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
path: root/spec
AgeCommit message (Collapse)Author
2017-01-26Add a system hook for when a project is updated.Tommy Beadle
This sends a project_update hook when a repo is updated. This does not include renaming or transferring a project. Those are covered by project_rename and project_transfer. This will get called, however, when the visibility is changed.
2017-01-26Merge branch 'rs-empty_project-lib' into 'master' Rémy Coutable
Use `:empty_project` where possible throughout spec/lib See merge request !8767
2017-01-26Merge branch '26068_tasklist_issue' into 'master' Sean McGivern
don’t count tasks that are not defined as list items correctly Closes #26068 See merge request !8526
2017-01-26Revert "Make sure TraceReader uses Encoding.default_external"Lin Jen-Shin
This reverts commit e9d8fc94e6e13f8b2d145f549d4a939ca25a3d93.
2017-01-26Make sure TraceReader uses Encoding.default_externalLin Jen-Shin
Encoding.default_external was chosen over Encoding.default_internal because File.read is returning Encoding.default_external, therefore we should align with it. Alternatively, we could force both of them to be Encoding.default_internal. However, ideally this should be determined by different projects. For example, some projects might want to use an encoding different to what GitLab is using. This might not happen soon though. Closes #27052
2017-01-26Merge branch 'rs-empty_project-for-associations' into 'master' Rémy Coutable
Factories with a project association use `:empty_project` by default See merge request !8770
2017-01-26Merge branch 'rs-empty_project-helpers' into 'master' Rémy Coutable
Use `:empty_project` where possible in helper specs See merge request !8796
2017-01-26Merge branch 'rs-empty_project-controllers' into 'master' Rémy Coutable
Use `:empty_project` where possible in controller specs See merge request !8797
2017-01-26Use `:empty_project` where possible in finder specsRobert Speicher
2017-01-26Merge branch 'fix/26518' into 'master' Douwe Maan
Fix access to the wiki code via HTTP when repository feature disabled Closes #26518 See merge request !8758
2017-01-26Use `empty_project` where possible in controller specsRobert Speicher
2017-01-26Merge branch 'copy-as-md' into 'master' Jacob Schatz
Copying a rendered issue/comment will paste into GFM textareas as actual GFM See merge request !8597
2017-01-26Use `:empty_project` where possible in helper specsRobert Speicher
2017-01-25Merge branch 'refresh-authorizations-fork-join' into 'master' Douwe Maan
Fix race conditions for AuthorizedProjectsWorker Closes #26194 and #26310 See merge request !8701
2017-01-25Merge branch 'label-select-toggle' into 'master' Fatih Acet
Fixed label select toggle not updating correctly Closes #26119 See merge request !8601
2017-01-25Don’t count tasks that are not defined as list items correctlyJarka Kadlecova
2017-01-25Use a project factory with a repository where necessaryRobert Speicher
2017-01-25Merge branch '26775-fix-auto-complete-initial-loading' into 'master' Fatih Acet
Fix autocomplete initial undefined state (loading) Closes #26775 See merge request !8667
2017-01-25Merge branch 'fix-ci-requests-concurrency' into 'master' Grzegorz Bizon
Fix CI requests concurrency See merge request !8760
2017-01-25Merge branch 'backport-ee-changes-for-build-minutes' into 'master' Grzegorz Bizon
Backport changes introduced by https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/1078 See merge request !8657
2017-01-25Fix access to the wiki code via HTTP when repository feature disabledDouglas Barbosa Alexandre
2017-01-25Use `:empty_project` where possible throughout spec/libRobert Speicher
2017-01-25Merge branch 'master' into copy-as-mdDouwe Maan
# Conflicts: # app/assets/javascripts/lib/utils/common_utils.js.es6
2017-01-25Merge branch 'fix/cycle-analytics-spec-failure' into 'master' Rémy Coutable
Fix spec failure due to timestamp ordering issue in mySQL Closes #26622 See merge request !8778
2017-01-25Merge branch 'dz-fix-group-canonical-route' into 'master' Dmitriy Zaporozhets
Fix 500 error for Group#web_url method if nested group See merge request !8743
2017-01-25Return struct instead of multiple valuesKamil Trzcinski
2017-01-25Merge branch 'dz-nested-groups-access-improvements' into 'master' Dmitriy Zaporozhets
Nested groups feature improvemetns See merge request !8448
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.
2017-01-25Merge branch 'issue-fiter-test-failure' into 'master' Rémy Coutable
Fixed error with filter keyboard tests See merge request !8777
2017-01-25Merge branch 'tc-only-mr-button-if-allowed' into 'master' Sean McGivern
Only show Merge Request button when user can create a MR See merge request !8639
2017-01-25Add User#nested_groups and User#nested_projects methodsDmitriy Zaporozhets
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2017-01-25Merge branch 'no_project_notes' into 'master' Sean McGivern
Support notes without a project (personal snippets notes) See merge request !8468
2017-01-25Fix spec failure due to timestamp ordering issue in mySQLJames Lopez
2017-01-25Fixed error with filter keyboard testsPhil Hughes
Issue filter now appends a space & the test wasn't taking this into account when checking the value
2017-01-25Test there is no Merge Request button when MRs are disabledToon Claes
In case Merge Requests are disabled on the project, no one should see the Merge Request button.
2017-01-25Ensure the correct Merge Request button is foundToon Claes
The project was not public and this caused a 404. So the tests were giving deceiving results. By searching for the Merge Request button in `#content-body` this is overcome, and also other Merge Request buttons (e.g. in the sidebar) are ignored.
2017-01-25Add 409 conflict testsKamil Trzcinski
2017-01-25Fix specsKamil Trzcinski
2017-01-25Remove unneeded code and fix offensesKamil Trzcinski
2017-01-25address commentsJarka Kadlecova
2017-01-25Merge branch 'filtered-search-keyboard-navigation' into 'master'Jacob Schatz
Fixed keyboard navigation not working in filtered search bar Closes #26840 See merge request !8656
2017-01-25Merge branch 'newline-eslint-rule' into 'master'Jacob Schatz
Add an eslint rule to flag extra newlines See merge request !8137
2017-01-25Merge branch 'normalize_frontend_headers' into 'master' Fatih Acet
Create a util for normalizing headers on the frontend See merge request !8750
2017-01-25Factories with a project association use `:empty_project` by defaultRobert Speicher
2017-01-25Run tests in a single browser sessionDouwe Maan
2017-01-25Merge branch 'master' into copy-as-mdDouwe Maan
2017-01-25Merge branch 'add-metrics-initializer-spec' into 'master' Yorick Peterse
Add metric initializer spec See merge request !8714
2017-01-25Flag multiple empty lines in eslint, fix offenses.Bryce Johnson
2017-01-25Merge branch '26468-fix-users-sort-in-admin-area' into 'master' Douwe Maan
Fixing sort of Users so that users who never logged in will be displayed last Closes #26468 See merge request !8637
2017-01-24Merge remote-tracking branch 'origin/master' into ↵Kamil Trzcinski
backport-ee-changes-for-build-minutes