summaryrefslogtreecommitdiff
path: root/spec
Commit message (Collapse)AuthorAgeFilesLines
* Fix race conditions for AuthorizedProjectsWorkerrefresh-authorizations-fork-joinYorick Peterse2017-01-258-1/+135
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Merge branch '26622-fix-transient-failure-in-cycle_analytics_events_spec' ↵Robert Speicher2017-01-221-21/+14
|\ | | | | | | | | | | | | | | | | | | into 'master' Make cycle_analytics_events_spec.rb side-effect free Closes #26622 See merge request !8594
| * Make cycle_analytics_events_spec.rb side-effect free26622-fix-transient-failure-in-cycle_analytics_events_specRémy Coutable2017-01-161-21/+14
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Added spec testsmerge-dropdown-this-contextPhil Hughes2017-01-221-0/+41
| |
* | Revert "Merge branch 'dont-persist-application-settings-in-test-env' into ↵Grzegorz Bizon2017-01-219-81/+32
| | | | | | | | | | 'master'" This reverts merge request !8573
* | Merge branch 'fix_auto_merging' into 'master' Grzegorz Bizon2017-01-211-9/+51
|\ \ | | | | | | | | | | | | | | | | | | Fix Merge When Pipeline Succeeds immediate merge bug Closes #26969 See merge request !8685
| * | Extend feature tests for merge when pipeline succeedsGrzegorz Bizon2017-01-211-9/+51
| | |
* | | Fixed failing JS specsPhil Hughes2017-01-211-4/+16
| | |
* | | Fixed issue when label or milestone had spacePhil Hughes2017-01-211-0/+12
| | |
* | | Added testsPhil Hughes2017-01-211-2/+35
| | | | | | | | | | | | Fixed edge cases with changing value
* | | Teaspoon test fixPhil Hughes2017-01-211-3/+18
|/ /
* | Merge branch 'fix/pipeline-ref-path-serialization' into 'master' Kamil Trzciński2017-01-211-0/+12
|\ \ | | | | | | | | | | | | | | | | | | Do not generate pipeline ref path if ref not present Closes #26861 See merge request !8658
| * | Do not generate pipeline ref path if ref not presentGrzegorz Bizon2017-01-201-0/+12
| | |
* | | Merge branch 'filter-assigned-to-me' into 'master' Jacob Schatz2017-01-211-0/+16
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Added current user filter to assignee dropdown Closes #26959 and #26882 See merge request !8653
| * | | Added current user filter to assignee dropdownfilter-assigned-to-mePhil Hughes2017-01-201-0/+16
| |/ / | | | | | | | | | | | | | | | | | | Adds an option in the assignee filter dropdown that allows the user to filter issues that are assigned to them Closes #26882
* | | Merge branch 'fix-shared-runners-queue-update' into 'master' 26636-multiple-requests-to-ci_status-endpoints-at-the-same-timeRémy Coutable2017-01-201-0/+47
|\ \ \ | | | | | | | | | | | | | | | | Fix shared runners queue update See merge request !8663
| * | | Add missing specs for update build queue servicefix-shared-runners-queue-updateGrzegorz Bizon2017-01-201-0/+47
| | | |
* | | | Merge branch 'fix/import-users' into 'master' Rémy Coutable2017-01-202-9/+83
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix import no longer mapping users as admin Closes #25346 See merge request !8625
| * | | | fix member mapper specfix/import-usersJames Lopez2017-01-201-24/+1
| | | | |
| * | | | fix and refactor note user mappingJames Lopez2017-01-182-9/+38
| | | | |
| * | | | added spec replicating the problemJames Lopez2017-01-182-2/+59
| | | | |
| * | | | do not map usersat all unless adminJames Lopez2017-01-181-1/+12
| | | | |
* | | | | Merge branch 'dont-persist-application-settings-in-test-env' into 'master' Robert Speicher2017-01-209-32/+81
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Don't persist application settings in test env See merge request !8573
| * | | | | Don't persist ApplicationSetting in test envdont-persist-application-settings-in-test-envRémy Coutable2017-01-159-32/+81
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | | | | | Merge branch 'record-used-ssh-keys-once-per-day' into 'master' Yorick Peterse2017-01-201-4/+23
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Record used SSH keys only once per day Closes #26877 See merge request !8655
| * | | | | Record used SSH keys only once per dayrecord-used-ssh-keys-once-per-dayAdam Niedzielski2017-01-201-4/+23
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | Use Gitlab::ExclusiveLease to make sure that we enqueue Sidekiq job at most once per day for given key.
* | | | | Merge branch 'rs-empty_project' into 'master' 26785-search-bar-doesnt-work-IERémy Coutable2017-01-204-131/+125
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Use `:empty_project` in Project, User, MergeRequest, and MoveToProjectFinder specs See merge request !8648
| * | | | | Convert MoveToProjectFinder specs to use `:empty_project`Robert Speicher2017-01-191-10/+10
| | | | | |
| * | | | | Convert most MergeRequest model specs to use `:empty_project`Robert Speicher2017-01-191-22/+22
| | | | | |
| * | | | | Convert most User model specs to use `:empty_project`Robert Speicher2017-01-191-45/+39
| | | | | |
| * | | | | Convert most Project model specs to use `:empty_project`Robert Speicher2017-01-191-54/+54
| | | | | |
* | | | | | Merge branch '26138-combine-webhooks-and-services-settings-pages' into 'master' Rémy Coutable2017-01-204-6/+26
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | | | | | | | | | | | | | Moved the webhooks and services gear options to a single one called integrations See merge request !8380
| * | | | | Fixed tests and a rubocop linter26138-combine-webhooks-and-services-settings-pagesJose Ivan Vargas2017-01-183-6/+6
| | | | | |
| * | | | | Corrected code style and titlesJose Ivan Vargas2017-01-181-2/+2
| | | | | |
| * | | | | Fixed more testsJose Ivan Vargas2017-01-181-1/+1
| | | | | |
| * | | | | Fixed spinach feature tests for the services and hooks controllersJose Ivan Vargas2017-01-181-0/+20
| | | | | | | | | | | | | | | | | | | | | | | | Added a test for the integrations controller
* | | | | | Merge branch '21698-redis-runner-last-build' into 'master' Kamil Trzciński2017-01-204-6/+103
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reduce DB-load for build-queues by storing last_update in Redis See merge request !8084
| * | | | | | Fix specsKamil Trzcinski2017-01-201-4/+6
| | | | | | |
| * | | | | | Fix specsKamil Trzcinski2017-01-191-1/+2
| | | | | | |
| * | | | | | Merge remote-tracking branch 'origin/master' into 21698-redis-runner-last-buildKamil Trzcinski2017-01-1991-481/+1472
| |\ \ \ \ \ \
| * | | | | | | Fix specsKamil Trzcinski2017-01-191-5/+28
| | | | | | | |
| * | | | | | | Add missing build_specKamil Trzcinski2017-01-191-0/+10
| | | | | | | |
| * | | | | | | Merge remote-tracking branch 'origin/master' into 21698-redis-runner-last-buildKamil Trzcinski2017-01-19472-4328/+22081
| |\ \ \ \ \ \ \ | | | |/ / / / / | | |/| | | | |
| * | | | | | | WIP: Add tests and make sure that headers are set21698-redis-runner-last-buildLin Jen-Shin2017-01-043-2/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * We realized that headers were not set whenever we give 204 because `render_api_error!` doesn't preserve the headers. * We also realized that `update_runner_info` would be called in POST /builds/register every time therefore runner is updated every time, ticking the queue, making this last_update didn't work very well, and the test would be failing due to that.
* | | | | | | | Merge branch '25507-handle-errors-environment-list' into 'master' Fatih Acet2017-01-193-1/+142
|\ \ \ \ \ \ \ \ | |_|_|/ / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Resolve "Error handling in environments list" Closes #25507 See merge request !8461
| * | | | | | | Adds testsFilipa Lacerda2017-01-123-1/+142
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds changelog entry Finishes tests Fix eslint errors Fix teaspoon test timing out
* | | | | | | | Merge branch '26601-dropdown-makes-request-close' into 'master' Fatih Acet2017-01-191-5/+6
|\ \ \ \ \ \ \ \ | |_|_|_|/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes builds dropdown making request when clicked to be closed Closes #26601 See merge request !8545
| * | | | | | | Use bootstrap dropdown events to only make the request when the dropdown is ↵26601-dropdown-makes-request-closeFilipa Lacerda2017-01-131-5/+6
| |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | being opened Fixes builds dropdown making request when clicked to be closed Adds MR ID to CHANGELOG Improve documentation Use bootstrap dropdown events to only make the request when the dropdown is being opened
* | | | | | | Merge branch 'use-empty_project-factory-in-api-specs' into 'master' Robert Speicher2017-01-1919-54/+53
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Replace many :project with :empty_projects in API specs See merge request !8608
| * | | | | | | Replace many :project with :empty_projects in API specsuse-empty_project-factory-in-api-specsRémy Coutable2017-01-1719-54/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>