summaryrefslogtreecommitdiff
path: root/spec/requests/api
Commit message (Collapse)AuthorAgeFilesLines
* Fix API responses when dealing with txt filesissue_31790Felipe Artur2017-08-151-0/+10
|
* Merge branch 'forks-count-cache' into 'master'Douwe Maan2017-08-152-0/+16
|\ | | | | | | | | Cache the number of forks of a project See merge request !13535
| * Cache the number of forks of a projectforks-count-cacheYorick Peterse2017-08-142-0/+16
| | | | | | | | | | | | | | | | | | | | | | The number of forks of a project doesn't change very frequently and running a COUNT(*) every time this information is requested can be quite expensive. We also end up running such a COUNT(*) query at least twice on the homepage of a project. By caching this data and refreshing it when necessary we can reduce project homepage loading times by around 60 milliseconds (based on the timings of https://gitlab.com/gitlab-org/gitlab-ce).
* | Use with_repo_branch_commit instead of fetch_ref directlyLin Jen-Shin2017-08-141-2/+1
| | | | | | | | | | So that we could limit the access to Repository#fetch_ref See: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/13416#note_37487433
* | Add comments about why we're stubbing them36089-handle-ref-failure-betterLin Jen-Shin2017-08-141-2/+2
| |
* | Merge remote-tracking branch 'upstream/master' into ↵Lin Jen-Shin2017-08-145-6/+71
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 36089-handle-ref-failure-better * upstream/master: (47 commits) Update CHANGELOG.md for 9.4.5 Update charlock_holmes add a changelog entry switch to multi-line before block restructure the #new_key notification spec don't send devise notifications to the ghost user reset_delivered_emails before testing #new_key skip the :read_project check for new_project_member move the member spec to be with the other ones add a spec for new_group_member add a spec for never emailing the ghost user rubocop fix a membership with no user is always notifiable check notifiability for more emails add Member#notifiable?(type, opts) make NotificationRecipient a little more customizable Add notes about database performance for MySQL fix confidential border issue as well as confidential styles leaking on new MR Migrate force push check to Gitaly Add option to disable project export on instance ...
| * Merge branch 'disable-project-export' into 'master'Rémy Coutable2017-08-111-1/+4
| |\ | | | | | | | | | | | | Add option to disable project export on instance See merge request !13211
| | * Add option to disable project export on instanceRobin Bobbitt2017-08-111-1/+4
| | |
| * | Merge branch '32004-use-timecop-safe-mode' into 'master'Robert Speicher2017-08-111-5/+4
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Enable Timecop safe mode Closes #32004 See merge request !13498
| | * | Enable Timecop safe mode32004-use-timecop-safe-modeRémy Coutable2017-08-111-5/+4
| | | | | | | | | | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
| * | | Merge branch '36213-return-is_admin-in-users-api-when-current_user-is-admin' ↵Sean McGivern2017-08-111-0/+10
| |\ \ \ | | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | into 'master' Include the `is_admin` field in the `GET /users/:id` API when current user is an admin Closes #36213 See merge request !13501
| | * | Include the `is_admin` field in the `GET /users/:id` API when current user ↵Rémy Coutable2017-08-111-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | is an admin Signed-off-by: Rémy Coutable <remy@rymai.me>
| * | | Merge branch 'split-events-into-push-events' into 'master'Sean McGivern2017-08-112-0/+53
| |\ \ \ | | |_|/ | |/| | | | | | | | | | Use a separate table for storing push events See merge request !12463
| | * | Migrate events into a new formatYorick Peterse2017-08-102-0/+53
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit migrates events data in such a way that push events are stored much more efficiently. This is done by creating a shadow table called "events_for_migration", and a table called "push_event_payloads" which is used for storing push data of push events. The background migration in this commit will copy events from the "events" table into the "events_for_migration" table, push events in will also have a row created in "push_event_payloads". This approach allows us to reclaim space in the next release by simply swapping the "events" and "events_for_migration" tables, then dropping the old events (now "events_for_migration") table. The new table structure is also optimised for storage space, and does not include the unused "title" column nor the "data" column (since this data is moved to "push_event_payloads"). == Newly Created Events Newly created events are inserted into both "events" and "events_for_migration", both using the exact same primary key value. The table "push_event_payloads" in turn has a foreign key to the _shadow_ table. This removes the need for recreating and validating the foreign key after swapping the tables. Since the shadow table also has a foreign key to "projects.id" we also don't have to worry about orphaned rows. This approach however does require some additional storage as we're duplicating a portion of the events data for at least 1 release. The exact amount is hard to estimate, but for GitLab.com this is expected to be between 10 and 20 GB at most. The background migration in this commit deliberately does _not_ update the "events" table as doing so would put a lot of pressure on PostgreSQL's auto vacuuming system. == Supporting Both Old And New Events Application code has also been adjusted to support push events using both the old and new data formats. This is done by creating a PushEvent class which extends the regular Event class. Using Rails' Single Table Inheritance system we can ensure the right class is used for the right data, which in this case is based on the value of `events.action`. To support displaying old and new data at the same time the PushEvent class re-defines a few methods of the Event class, falling back to their original implementations for push events in the old format. Once all existing events have been migrated the various push event related methods can be removed from the Event model, and the calls to `super` can be removed from the methods in the PushEvent model. The UI and event atom feed have also been slightly changed to better handle this new setup, fortunately only a few changes were necessary to make this work. == API Changes The API only displays push data of events in the new format. Supporting both formats in the API is a bit more difficult compared to the UI. Since the old push data was not really well documented (apart from one example that used an incorrect "action" nmae) I decided that supporting both was not worth the effort, especially since events will be migrated in a few days _and_ new events are created in the correct format.
* | | | Merge remote-tracking branch 'upstream/master' into ↵Lin Jen-Shin2017-08-112-2/+2
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 36089-handle-ref-failure-better * upstream/master: Fix merge request diff deserialisation when too_large was absent Bumps omniauth-ldap gem version to 2.0.4 Remove an unnecessary `let` in spec/features/projects/user_edits_files_spec.rb Remove documentation about rules that are now enforced by RuboCop Enable the RSpec/HookArgument cop and auto-correct offenses
| * | | Enable the RSpec/HookArgument cop and auto-correct offensesRobert Speicher2017-08-104-4/+4
| | |/ | |/|
* | | Merge remote-tracking branch 'upstream/master' into ↵Lin Jen-Shin2017-08-1118-58/+58
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 36089-handle-ref-failure-better * upstream/master: (62 commits) Update gitlab.po: Missing 'r' in "Fouché" that comes from "Fourcher" verb. Docs: update user docs index Fix minor typos in views Fix Layout/SpaceBeforeBlockBraces violation in bin/changelog_spec Merge branch 'rs-alphanumeric-ssh-params' into 'security-9-4' Merge branch 'import-symlinks-9-3' into 'security-9-3' Fix wrong method call on prometheus histogram Document new all-in-one Helm chart - docs Fix 404 on link path Fix line numbers not matching up to code in code viewer. Hide overflow-x on collapsed sidebar removed global use of breakpoint checker Increase performance of the breakpoint size checker Filter sensitive query string parameters from NGINX access logs Added a template for database changes Render new issue link in failed job as a regular link instead of a UJS one Include RE2 in the upgrade docs Remove affix plugin from issuable sidebar with new navigation Fix linter error alternative route for download archive ...
| * | Improve the Project factory to make `creator` defaults to namespace.ownerRémy Coutable2017-08-101-2/+2
| |/ | | | | | | | | | | | | | | Also improves the `create_templates` transient attribute and use `project.project_feature.update_columns` instead of `project.project_feature.update_attributes!` since it's faster. Signed-off-by: Rémy Coutable <remy@rymai.me>
| * Enable the Layout/SpaceBeforeBlockBraces coprc/enable-the-Layout/SpaceBeforeBlockBraces-copRémy Coutable2017-08-0917-56/+56
| | | | | | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Fix more testsLin Jen-Shin2017-08-111-106/+97
| |
* | Introduce MergeRequest#write_ref and Repository#write_refLin Jen-Shin2017-08-101-11/+13
| | | | | | | | so that we don't have to fetch it for non-forks
* | Fix some tests and report the error messageLin Jen-Shin2017-08-091-4/+16
|/
* Fix a broken Events API spec36169-fix-masterRémy Coutable2017-08-081-13/+8
| | | | Signed-off-by: Rémy Coutable <remy@rymai.me>
* Merge branch 'rc/fix-commits-api' into 'master'Sean McGivern2017-08-081-157/+477
|\ | | | | | | | | | | | | Fix the /projects/:id/repository/commits endpoint to handle dots in the ref name… Closes #15651 See merge request !13370
| * Fix the /projects/:id/repository/commits endpoint to handle dots in the ref ↵rc/fix-commits-apiRémy Coutable2017-08-081-157/+477
| | | | | | | | | | | | name when the project full path contains a `/` Signed-off-by: Rémy Coutable <remy@rymai.me>
* | Expose noteable_iid in Notesue4452017-08-081-0/+35
| |
* | Fix the /projects/:id/repository/tags endpoint to handle dots in the tag ↵Rémy Coutable2017-08-081-160/+311
|/ | | | | | name when the project full path contains a `/` Signed-off-by: Rémy Coutable <remy@rymai.me>
* Merge branch 'bvl-nfs-circuitbreaker' into 'master'Sean McGivern2017-08-071-0/+57
|\ | | | | | | | | | | | | Circuitbreaker for storage paths Closes #32207, #33117, gitlab-com/infrastructure#1946, and gitlab-com/infrastructure#1775 See merge request !11449
| * Merge branch 'master' into 'bvl-nfs-circuitbreaker'Douwe Maan2017-08-071-0/+20
| |\ | | | | | | | | | | | | # Conflicts: # app/models/repository.rb # spec/models/repository_spec.rb
| * | Add a Circuitbreaker for storage pathsBob Van Landuyt2017-08-041-0/+57
| | |
* | | Merge branch '32300__expose_more_attributes' into 'master'Rémy Coutable2017-08-073-3/+26
|\ \ \ | |_|/ |/| | | | | | | | Expose more attributes to unauthenticated GET /projects/:id See merge request !13283
| * | Expose more attributes to unauthenticated GET /projects/:idTony2017-08-033-3/+26
| | |
* | | Merge branch 'tc-fix-mr-query-params' into 'master'Rémy Coutable2017-08-041-0/+20
|\ \ \ | |_|/ |/| | | | | | | | Add spec to test combining API merge_requests query parameters See merge request !11172
| * | Add spec to test combining API merge_requests query parametersToon Claes2017-08-031-0/+20
| |/ | | | | | | To investigate gitlab-org/gitlab-ce#31599
* | Don't include EmailHelpers manually, pick with rspecuse-rspec-support-helperLin Jen-Shin2017-08-032-6/+2
|/ | | | | | | | | `:mailer` is needed to pick it easily, while `type: :mailer` is needed for picking it automatically for tests located in spec/mailers/*_spec.rb It's a bit complicated in spec/services/notification_service_spec.rb but we'll leave it alone for now.
* Change all `:empty_project` to `:project`rs-empty_project-defaultRobert Speicher2017-08-0243-144/+144
|
* Extending API for protected branchesEric2017-08-021-0/+232
|
* Ensure all project factories use `:repository` trait or `:empty_project`rs-empty_project-cleanupRobert Speicher2017-08-017-9/+9
|
* Merge branch '33620-remove-events-from-notification_settings' into 'master'Douwe Maan2017-08-011-2/+2
|\ | | | | | | | | | | | | Resolve "Remove `events` from `notification_settings`" Closes #33620 See merge request !13152
| * Remove events column from notification settings33620-remove-events-from-notification_settingsSean McGivern2017-07-311-2/+2
| | | | | | | | | | This was migrated to separate columns in 9.4, and now just needs to be removed for real.
* | Merge branch '28283-legacy-storage-format' into 'master'Sean McGivern2017-08-011-2/+2
|\ \ | | | | | | | | | | | | [CE] Added Legacy Storage format See merge request !13149
| * | Rename many path_with_namespace -> full_pathGabriel Mazetto2017-08-011-2/+2
| |/
* | Merge branch '34519-extend-api-group-secret-variable' into 'master'Kamil Trzciński2017-08-011-0/+221
|\ \ | | | | | | | | | | | | | | | | | | Extend API: Group Secret Variable Closes #34519 See merge request !12936
| * | IniShinya Maeda2017-07-191-0/+221
| | |
* | | Allow logged in users to read user list under public restrictionLin Jen-Shin (godfat)2017-08-011-17/+23
| |/ |/|
* | Fixup POST /v3/:id/hooks and PUT /v3/:id/hooks/:hook_idRichard Clamp2017-07-281-3/+3
| |
* | Merge branch 'merge-issuable-reopened-into-opened-state' into 'master'Sean McGivern2017-07-282-2/+2
|\ \ | | | | | | | | | | | | Merge issuable "reopened" state into "opened" See merge request !12972
| * | Merge issuable "reopened" state into "opened"merge-issuable-reopened-into-opened-stateYorick Peterse2017-07-282-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Having two states that essentially mean the same thing is very much like having a boolean "true" and boolean "mostly-true": it's rather silly. This commit merges the "reopened" state into the "opened" state while taking care of system notes still showing messages along the lines of "Alice reopened this issue". A big benefit from having only two states (opened and closed) is that indexing and querying becomes simpler and more performant. For example, to get all the opened queries we no longer have to query both states: SELECT * FROM issues WHERE project_id = 2 AND state IN ('opened', 'reopened'); Instead we can query a single state directly, which can be much faster: SELECT * FROM issues WHERE project_id = 2 AND state = 'opened'; Further, only having two states makes indexing easier as we will only ever filter (and thus scan an index) using a single value. Partial indexes could help but aren't supported on MySQL, complicating the development process and not being helpful for MySQL.
* | | Fix static snalysysShinya Maeda2017-07-281-1/+1
| | |
* | | Use let(:pipeline) for variables spec in triggers_spec.rbShinya Maeda2017-07-281-2/+1
| | |