Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-07-05Create and use project path helpers that only need a project, no namespaceDouwe Maan
2017-06-12Let PhantomJS load local imagesRémy Coutable
This change fix a memory leak due to a Webkit bug: https://github.com/ariya/phantomjs/issues/12903 Also: - Whitelist only localhost and 127.0.0.1 in Capybara + JS specs - Blacklist all requests to media such as images, videos, PDFs, CSVs etc. - Log all the requests made. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-05-23Use wait_for_requests to wait all JS requestOswaldo Ferreira
2017-05-13Wait for requests after each Spinach scenario instead of featureDouwe Maan
2017-05-09Merge request widget redesignFatih Acet
2017-04-26Ensure Spinach features with JS waits for requests to completeRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-04-20Except where necessary, use `sign_in` over `login_as` in featuresRobert Speicher
2017-04-04Fix a Knapsack issue that would load support/capybara.rb before support/env.rbRémy Coutable
Once https://github.com/ArturT/knapsack/issues/57 is solved and released in a new gem version, we can remove the KNAPSACK_TEST_DIR in .gitlab-ci.yml. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-04-02Fix Spinach and Capybara dependenciesStan Hu
Closes #30347
2017-03-31Properly eagerly-load the Capybara server for JS feature specs onlyRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-31Eager-load the Capybara server to prevent timeoutsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-31Increase Capybara's timeoutRémy Coutable
Also disabled assets warming for Capybara/RSpec and remove a check to skip assets warming when ./tmp/cache/assets/test exists because assets are now served by webpack-dev-server. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-03-30Monkey patch the Spinach StdoutReporter to show scenario locationsRobert Speicher
Before: Scenario: Viewing invitation when signed out ✔ Given "John Doe" is owner of group "Owned" # features/steps/shared/group.rb:8 After: Scenario: Viewing invitation when signed out # features/invites.feature:6 ✔ Given "John Doe" is owner of group "Owned" # features/steps/shared/group.rb:8 Now if a scenario fails we can easily rerun it with a specific line number.
2017-03-14Merge branch 'rs-capybara-screenshot-artifacts' into 'master' Kamil Trzciński
Store capybara screenshots as build artifacts Closes #13971 See merge request !7985
2017-03-08Decrease Capybara timeout for CI environmentRobert Speicher
2017-01-25Fix race conditions for AuthorizedProjectsWorkerYorick Peterse
There were two cases that could be problematic: 1. Because sometimes AuthorizedProjectsWorker would be scheduled in a transaction it was possible for a job to run/complete before a COMMIT; resulting in it either producing an error, or producing no new data. 2. When scheduling jobs the code would not wait until completion. This could lead to a user creating a project and then immediately trying to push to it. Usually this will work fine, but given enough load it might take a few seconds before a user has access. The first one is problematic, the second one is mostly just annoying (but annoying enough to warrant a solution). This commit changes two things to deal with this: 1. Sidekiq scheduling now takes places after a COMMIT, this is ensured by scheduling using Rails' after_commit hook instead of doing so in an arbitrary method. 2. When scheduling jobs the calling thread now waits for all jobs to complete. Solution 2 requires tracking of job completions. Sidekiq provides a way to find a job by its ID, but this involves scanning over the entire queue; something that is very in-efficient for large queues. As such a more efficient solution is necessary. There are two main Gems that can do this in a more efficient manner: * sidekiq-status * sidekiq_status No, this is not a joke. Both Gems do a similar thing (but slightly different), and the only difference in their name is a dash vs an underscore. Both Gems however provide far more than just checking if a job has been completed, and both have their problems. sidekiq-status does not appear to be actively maintained, with the last release being in 2015. It also has some issues during testing as API calls are not stubbed in any way. sidekiq_status on the other hand does not appear to be very popular, and introduces a similar amount of code. Because of this I opted to write a simple home grown solution. After all, all we need is storing a job ID somewhere so we can efficiently look it up; we don't need extra web UIs (as provided by sidekiq-status) or complex APIs to update progress, etc. This is where Gitlab::SidekiqStatus comes in handy. This namespace contains some code used for tracking, removing, and looking up job IDs; all without having to scan over an entire queue. Data is removed explicitly, but also expires automatically just in case. Using this API we can now schedule jobs in a fork-join like manner: we schedule the jobs in Sidekiq, process them in parallel, then wait for completion. By using Sidekiq we can leverage all the benefits such as being able to scale across multiple cores and hosts, retrying failed jobs, etc. The one downside is that we need to make sure we can deal with unexpected increases in job processing timings. To deal with this the class Gitlab::JobWaiter (used for waiting for jobs to complete) will only wait a number of seconds (30 by default). Once this timeout is reached it will simply return. For GitLab.com almost all AuthorizedProjectWorker jobs complete in seconds, only very rarely do we spike to job timings of around a minute. These in turn seem to be the result of external factors (e.g. deploys), in which case a user is most likely not able to use the system anyway. In short, this new solution should ensure that jobs are processed properly and that in almost all cases a user has access to their resources whenever they need to have access.
2016-12-08Don't disable capybara-screenshot in CI environmentRobert Speicher
2016-11-28Pass `--load-images=no` to PhantomJS via Capybara/PoltergeistRobert Speicher
We were unintentionally hitting `gravatar.com` whenever a test that used Poltergeist was run. This was certainly wasting their resources and slowing down our tests even further, for no reason.
2016-10-21Disable warming of the asset cache in Spinach tests under CIStan Hu
I suspect some combination of Knapsack tests cause no regular Rack tests to be loaded (i.e. all JavaScript tests), which leads to the error: ArgumentError: rack-test requires a rack application, but none was given In CI, we precompile all the assets so there is no need to warm the asset cache in any case. Closes #23613
2016-10-18Wait for ajax for every merge request spinach testDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2016-10-14Try to fix re-runKamil Trzcinski
2016-10-14Remove spinach retry.Connor Shea
2016-08-13Updated failing testsPhil Hughes
2016-07-21Introduce SimpleCovEnv singleton helper and use itGrzegorz Bizon
2016-07-21Fix spinach testsKamil Trzcinski
2016-07-21Update configuration of SimpleCovKamil Trzcinski
2016-07-21Store all simplecov configuration in one fileKamil Trzcinski
2016-07-21Add simplecov to spinach testsKamil Trzcinski
2016-07-13Fix Knapsack report generation for SpinachKamil Trzcinski
2016-06-30Remove coveralls linesZ.J. van de Weg
2016-06-08Enable Knapsack only in CI environmentKamil Trzcinski
2016-06-03Use knapsack everywhereKamil Trzcinski
2016-06-03Use own version of knapsack which supports spinach testsKamil Trzcinski
2016-06-03WIPKamil Trzcinski
2016-06-03Try to use knapsackKamil Trzcinski
2016-03-15Fix Capybara 2.6.2 deprecation warningsStan Hu
2016-03-09Retry spinach testsKamil Trzcinski
2016-02-23Set window_size to 1366*768Alfredo Sumaran
2016-01-29Prevent transient Capybara timeouts during feature testsRobert Speicher
The problem occurred because asset compilation takes a long time, so when the asset cache didn't exist and the first test ran, it would often (randomly) time out during the generation before the actual test even had a chance to run. Now we check if the cache exists before the suite runs, and if not, we manually fire a request to the root URL in order to generate it. This should allow subsequent tests to use the cached assets.
2015-12-15Add spinach test for note pollingGrzegorz Bizon
This also increases capybara timeout to 15 seconds (note polling interval). Capybara will look for new note for this period of time.
2015-08-14Fix tests for web editorDmitriy Zaporozhets
2015-06-22Started on the actual rspec 3 upgradeJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2015-06-04Remove unnecessary require from Spinach envRobert Speicher
2015-04-26Don't use capybara-screenshot in CI environmentsRobert Speicher
2015-04-26Enable js_errors for Capybara in Spinach and RSpecRobert Speicher
2015-04-26Reduce timeout for non-CI featuresRobert Speicher
2015-04-26Move Spinach setup for db_cleaner and capybara to their own filesRobert Speicher
Also adds capybara-screenshot, which will automatically save the page as html and an image whenever a feature fails. Handy for debugging.
2015-02-12Fixed tests for spinachJeroen van Baarsen
Signed-off-by: Jeroen van Baarsen <jeroenvanbaarsen@gmail.com>
2014-10-01Try wear_merged! without argumentDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2014-09-19Refactor coverage tools usageDmitriy Zaporozhets
rspec spec # no coverage generated SIMPLECOV=true rspec spec # generate coverage locally into ./coverage COVERALLS=true rspec spec # generate and send coverage data to coveralls.io Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>