summaryrefslogtreecommitdiff
path: root/spec/models/merge_request_spec.rb
Commit message (Collapse)AuthorAgeFilesLines
* Close and do not reload MR diffs when source branch is deletedOswaldo Ferreira2018-01-291-1/+1
|
* Fix MR revert check when no merged_at is presentSean McGivern2018-01-291-10/+20
|
* Look at notes created just before merge when deciding if an MR can be revertedNick Thomas2018-01-251-2/+12
| | | | | | | | | | | | | On MySQL, at least, `Note#created_at` doesn't seem to store fractional seconds, while `MergeRequest::Metrics#merged_at` does. This breaks the optimization assumption that we only need to search for notes created *after* the MR has been merged. Unsynchronized system clocks also make this a dangerous assumption to make. Adding a minute of leeway still optimizes away most notes, but allows both cases to be handled more gracefully. If the system clocks are more than a minute out, we'll still be broken, of course.
* Display related merge requests in commit detail pageHiroyuki Sato2018-01-121-0/+33
|
* Merge branch '41807-15665-consistently-502s-because-it-fetches-every-commit' ↵41988-updating-the-markdown-cache-version-does-not-flush-the-appearances-cacheRémy Coutable2018-01-121-0/+77
|\ | | | | | | | | | | | | | | | | into 'master' Resolve "!15665 consistently 502s because it fetches every commit" Closes #41807 See merge request gitlab-org/gitlab-ce!16320
| * Only search for MR revert commits on notes after MR was merged41807-15665-consistently-502s-because-it-fetches-every-commitSean McGivern2018-01-121-0/+77
| | | | | | | | | | | | | | | | | | | | If we search for notes before the MR was merged, we have to load every commit that was ever part of the MR, or mentioned in a push. In extreme cases, this can be tens of thousands of commits to load, but we know they can't revert the merge commit, because they are from before the MR was merged. In the (rare) case that we don't have a `merged_at` value for the MR, we can still search all notes.
* | Merge branch 'feature/migrate-is-rebase-in-progress-to-gitaly' into 'master'Robert Speicher2018-01-111-23/+29
|\ \ | | | | | | | | | | | | | | | | | | Migrate rebase_in_progress? to Gitaly Closes gitaly#866 See merge request gitlab-org/gitlab-ce!16286
| * | Migrate rebase_in_progress? to Gitalyfeature/migrate-is-rebase-in-progress-to-gitalyAhmad Sherif2018-01-101-23/+29
| |/ | | | | | | Closes gitaly#866
* | Remove soft removals related codeYorick Peterse2018-01-081-5/+0
|/ | | | | | | | | | | | | | This removes all usage of soft removals except for the "pending delete" system implemented for projects. This in turn simplifies all the query plans of the models that used soft removals. Since we don't really use soft removals for anything useful there's no point in keeping it around. This _does_ mean that hard removals of issues (which only admins can do if I'm not mistaken) can influence the "iid" values, but that code is broken to begin with. More on this (and how to fix it) can be found in https://gitlab.com/gitlab-org/gitlab-ce/issues/31114. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/37447
* Backport 'Rebase' feature from EE to CEjprovazn-rebaseJan Provaznik2018-01-051-0/+46
| | | | | | | | | | | | | | When a project uses fast-forward merging strategy user has to rebase MRs to target branch before it can be merged. Now user can do rebase in UI by clicking 'Rebase' button instead of doing rebase locally. This feature was already present in EE, this is only backport of the feature to CE. Couple of changes: * removed rebase license check * renamed migration (changed timestamp) Closes #40301
* Cache merged and closed events data in merge_request_metrics tableOswaldo Ferreira2018-01-021-0/+19
|
* Replace '.team << [user, role]' with 'add_role(user)' in specs36782-replace-team-user-role-with-add_role-user-in-specsblackst0ne2017-12-221-6/+6
|
* Merge branch 'zj-mr-diff-memoization-bug' into 'master'Sean McGivern2017-12-141-9/+20
|\ | | | | | | | | Clear caches before updating MR diffs See merge request gitlab-org/gitlab-ce!15916
| * Clear caches before updating MR diffsZeger-Jan van de Weg2017-12-141-9/+20
| | | | | | | | | | | | The hook ordering influenced the diffs being generated as these used values from before the update due to the memoization still being in place. This commit reorders them and tests against this behaviour.
* | Merge branch 'issue_41021' into 'master'Sean McGivern2017-12-131-0/+16
|\ \ | |/ |/| | | | | | | | | Prevent worker that updates merge requests head pipeline from failing jobs Closes #41021 See merge request gitlab-org/gitlab-ce!15870
| * Prevent worker that updates merge requests head pipeline from failing jobsFelipe Artur2017-12-131-0/+16
| |
* | Use memoization for commits on diffsZeger-Jan van de Weg2017-12-121-1/+3
|/ | | | | | | | | | | | | | | | The Gitaly CommitService is being hammered by n + 1 calls, mostly when finding commits. This leads to this gRPC being turned of on production: https://gitlab.com/gitlab-org/gitaly/issues/514#note_48991378 Hunting down where it came from, most of them were due to MergeRequest#show. To prove this, I set a script to request the MergeRequest#show page 50 times. The GDK was being scraped by Prometheus, where we have metrics on controller#action and their Gitaly calls performed. On both occations I've restarted the full GDK so all caches had to be rebuild. Current master, 806a68a81f1baee, needed 435 requests After this commit, 154 requests
* add support for the commit reference filtermicael.bergeron2017-12-071-1/+1
|
* Throttle the number of UPDATEs triggered by touchYorick Peterse2017-12-061-0/+4
| | | | | | | This throttles the number of UPDATE queries that can be triggered by calling "touch" on a Note, Issue, or MergeRequest. For Note objects we also take care of updating the associated "noteable" relation in a smarter way than Rails does by default.
* use actual head pipeline on merge request presenterFelipe Artur2017-12-051-0/+14
|
* Use actual head pipeline on merge request serializerFelipe Artur2017-12-051-4/+4
|
* Check if head_pipeline is correct before mergingFelipe Artur2017-12-051-16/+21
|
* Ensure pippeline corresponds with the sha of an MRJarka Kadlecova2017-12-051-10/+18
|
* Ensure MRs always use branch refs for comparisonSean McGivern2017-11-281-3/+18
| | | | | | | | | | If a merge request was created with a branch name that also matched a tag name, we'd generate a comparison to or from the tag respectively, rather than the branch. Merging would still use the branch, of course. To avoid this, ensure that when we get the branch heads, we prepend the reference prefix for branches, which will ensure that we generate the correct comparison.
* Use latest_merge_request_diff associationSean McGivern2017-11-231-0/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Compared to the merge_request_diff association: 1. It's simpler to query. The query uses a foreign key to the merge_request_diffs table, so no ordering is necessary. 2. It's faster for preloading. The merge_request_diff association has to load every diff for the MRs in the set, then discard all but the most recent for each. This association means that Rails can just query for N diffs from N MRs. 3. It's more complicated to update. This is a bidirectional foreign key, so we need to update two tables when adding a diff record. This also means we need to handle this as a special case when importing a GitLab project. There is some juggling with this association in the merge request model: * `MergeRequest#latest_merge_request_diff` is _always_ the latest diff. * `MergeRequest#merge_request_diff` reuses `MergeRequest#latest_merge_request_diff` unless: * Arguments are passed. These are typically to force-reload the association. * It doesn't exist. That means we might be trying to implicitly create a diff. This only seems to happen in specs. * The association is already loaded. This is important for the reasons explained in the comment, which I'll reiterate here: if we a) load a non-latest diff, then b) get its `merge_request`, then c) get that MR's `merge_request_diff`, we should get the diff we loaded in c), even though that's not the latest diff. Basically, `MergeRequest#merge_request_diff` is the latest diff in most cases, but not quite all.
* Move update_project_counter_caches? out of issue and merge requestGeorge Andrinopoulos2017-11-111-12/+0
|
* align with the commentsmicael.bergeron2017-11-061-1/+1
|
* removed the #ensure_ref_fetched from all controllersmicael.bergeron2017-11-031-32/+5
| | | | | | | | also, I refactored the MergeRequest#fetch_ref method to express the side-effect that this method has. MergeRequest#fetch_ref -> MergeRequest#fetch_ref! Repository#fetch_source_branch -> Repository#fetch_source_branch!
* Make merge_jid handling less stateful in MergeServiceOswaldo Ferreira2017-10-271-0/+6
|
* Cache commits on the repository modelZeger-Jan van de Weg2017-10-271-2/+2
| | | | | | | | | | | Now, when requesting a commit from the Repository model, the results are not cached. This means we're fetching the same commit by oid multiple times during the same request. To prevent us from doing this, we now cache results. Caching is done only based on object id (aka SHA). Given we cache on the Repository model, results are scoped to the associated project, eventhough the change of two repositories having the same oids for different commits is small.
* Simplify check for running job on Redis39032-improve-merge-ongoing-check-consistencyOswaldo Ferreira2017-10-131-2/+2
|
* Make "merge ongoing" check more consistentOswaldo Ferreira2017-10-111-1/+21
|
* Introduce new hook data builders for Issue and MergeRequest34284-add-changes-to-issuable-webhook-dataRémy Coutable2017-10-091-52/+7
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Start adding Gitlab::HookData::IssuableBuilderRémy Coutable2017-10-091-5/+38
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Add a project forks spec helperBob Van Landuyt2017-10-071-23/+20
| | | | | The helper creates a fork of a project with all provided attributes, but skipping the creation of the repository on disk.
* Allow creating merge requests across forks of a projectBob Van Landuyt2017-10-071-2/+15
|
* Reduce method calls while evaluating Projects::MergeRequestsController#show.json36876-mr-show-json-controller-perf-improvementsOswaldo Ferreira2017-10-041-0/+43
|
* Resolve outdated diff discussions on pushSean McGivern2017-09-061-4/+34
|
* Merge branch 'issue_36820' into 'master'Sean McGivern2017-09-011-0/+2
|\ | | | | | | | | | | | | Remove closing external issues by reference error Closes #36820 See merge request !13910
| * Remove closing external issues by reference errorissue_36820Felipe Artur2017-08-311-0/+2
| |
* | Only update the sidebar count caches when neededsidebar-cache-updatesYorick Peterse2017-08-301-0/+12
|/ | | | | | This ensures the issues/MR cache of the sidebar is only updated when the state or confidential flags changes, instead of changing this for every update.
* Rename MergeRequest#async_merge to merge_asyncOswaldo Ferreira2017-08-281-2/+2
|
* Track enqueued and ongoing MRsOswaldo Ferreira2017-08-281-20/+19
|
* Merge branch '36262_merge_request_reference_in_merge_commit_global' into ↵Sean McGivern2017-08-241-1/+1
|\ | | | | | | | | | | | | | | | | 'master' fix Merge request reference in merge commit is not global Closes #36262 See merge request !13518
| * fixes failing tests for full reference changehaseeb2017-08-131-1/+1
| |
* | Cache the number of open issues and merge requestsYorick Peterse2017-08-231-0/+9
|/ | | | | | | | | | | | | | | | | | | | | Every project page displays a navigation menu that in turn displays the number of open issues and merge requests. This means that for every project page we run two COUNT(*) queries, each taking up roughly 30 milliseconds on GitLab.com. By caching these numbers and refreshing them whenever necessary we can reduce loading times of all these pages by up to roughly 60 milliseconds. The number of open issues does not include confidential issues. This is a trade-off to keep the code simple and to ensure refreshing the data only needs 2 COUNT(*) queries instead of 3. A downside is that if a project only has 5 confidential issues the counter will be set to 0. Because we now have 3 similar counting service classes the code previously used in Projects::ForksCountService has mostly been moved to Projects::CountService, which in turn is reused by the various service classes. Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/36622
* Enable the RSpec/HookArgument cop and auto-correct offensesRobert Speicher2017-08-101-1/+1
|
* Enable the Layout/SpaceBeforeBlockBraces coprc/enable-the-Layout/SpaceBeforeBlockBraces-copRémy Coutable2017-08-091-2/+2
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Store MergeWorker JID on merge request, and clean up stuck mergesOswaldo Ferreira2017-08-071-0/+26
|
* Change all `:empty_project` to `:project`rs-empty_project-defaultRobert Speicher2017-08-021-15/+15
|