summaryrefslogtreecommitdiff
path: root/spec/features
Commit message (Collapse)AuthorAgeFilesLines
* Add support page link in help menuDiego Louzán2019-07-301-2/+32
| | | | Creates a new item in help dropdown to show configured support page link
* Update rouge to v3.7.0Stan Hu2019-07-291-1/+1
| | | | | | | | This adds support for a number of new languages (e.g. Ada) and fixes a number of lexers: https://github.com/rouge-ruby/rouge/compare/v3.5.1..v3.7.0 Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64625
* Merge branch 'tp-qtt182-6' into 'master'Mayra Cabrera2019-07-291-1/+1
|\ | | | | | | | | | | | | Change qa-merge-request-settings to rspec-merge-request-settings Closes gitlab-org/quality/team-tasks#182 See merge request gitlab-org/gitlab-ce!31207
| * Change qa-* class references to rspec-*tp-qtt182-6Tanya Pazitny2019-07-261-1/+1
| |
* | Change qa-* class references to js-* for suggestionsTanya Pazitny2019-07-291-3/+3
| |
* | Change qa-reverse-sort class references to rspec-reverse-sortTanya Pazitny2019-07-292-4/+4
| |
* | Change qa-* class references to rspec-* in ↵Tanya Pazitny2019-07-291-5/+5
| | | | | | | | spec/features/contextual_sidebar_spec.rb
* | Merge branch 'tp-qtt182-7' into 'master'Mayra Cabrera2019-07-291-1/+1
|\ \ | | | | | | | | | | | | | | | | | | Change qa-issuable-form-description to rspec-issuable-form-description Closes gitlab-org/quality/team-tasks#182 See merge request gitlab-org/gitlab-ce!31209
| * | Change qa-* class references to rspec-*tp-qtt182-7Tanya Pazitny2019-07-261-1/+1
| |/
* | Change qa-full-name to rspec-full-nameTanya Pazitny2019-07-291-1/+1
| |
* | Change qa-* class references to rspec-* for repository settingsTanya Pazitny2019-07-291-4/+4
| |
* | Merge branch 'tp-qtt182-3' into 'master'Mayra Cabrera2019-07-291-1/+1
|\ \ | | | | | | | | | | | | | | | | | | Change qa-create-page-button to rspec-create-page-button Closes gitlab-org/quality/team-tasks#182 See merge request gitlab-org/gitlab-ce!31204
| * | Change qa-* class references to rspec-*tp-qtt182-3Tanya Pazitny2019-07-261-1/+1
| |/
* | Merge branch 'tp-qtt182-4' into 'master'Mayra Cabrera2019-07-291-1/+1
|\ \ | | | | | | | | | | | | | | | | | | Change qa-* to rspec-* for save-merge-request-changes Closes gitlab-org/quality/team-tasks#182 See merge request gitlab-org/gitlab-ce!31205
| * | Change qa-* class references to rspec-*tp-qtt182-4Tanya Pazitny2019-07-261-1/+1
| |/
* | Merge branch 'master' of dev.gitlab.org:gitlab/gitlabhqRobert Speicher2019-07-292-24/+18
|\ \
| * \ Merge branch 'security-remove-take-trigger-ownership-feature' into 'master'GitLab Release Tools Bot2019-07-261-23/+0
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | Drop feature to take ownership of a trigger token Closes #2868 See merge request gitlab/gitlabhq!3198
| | * | Drop feature to take ownership of a trigger tokenFabio Pitino2019-07-101-23/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Removing API and frontend interactions that allowed users to take ownership of a trigger token. Removed mentions from the documentation.
| * | | Merge branch 'security-bvl-filter-mr-params' into 'master'GitLab Release Tools Bot2019-07-261-1/+20
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Filter params in MR build service Closes #2879 See merge request gitlab/gitlabhq!3237
| | * | | Filter params in MR build serviceBob Van Landuyt2019-07-171-1/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reusing the existing `IssuableBaseService#filter_params` which uses the policies to determine what params a user can set, and which values it can be set to. This also removed the need for the seperate call to `IssuableBaseService#ensure_milestone_available`. The `Issues::BuildService` does not suffer from this because it limits the params that are assignable to the `title`, `description` and `milestone_id`.
* | | | | Merge branch 'resolve-spec-differences' into 'master'Lin Jen-Shin2019-07-293-8/+50
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Resolve EE specific differences in the spec/ directory See merge request gitlab-org/gitlab-ce!31109
| * | | | | Make usage content spec the same for CE and EEYorick Peterse2019-07-291-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changes the spec in question so that it is the same for both CE and EE. This requires an `if Gitlab.ee?` since EE requires that we stub an EE specific module, but doing so in CE will break the spec there.
| * | | | | Make protected tags spec the same for CE and EEYorick Peterse2019-07-291-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changes a protected tags feature spec so that it is the same in both CE and EE. This requires the use of a `if Gitlab.ee?` check, as the added lines don't work in CE but do work in EE. Removing them entirely in turn breaks the EE spec.
| * | | | | Backport ToDo feature specs from EEYorick Peterse2019-07-291-7/+35
| | | | | | | | | | | | | | | | | | | | | | | | This ensures that both CE and EE have the same specs.
* | | | | | Further remove code branches by database typeAndreas Brandl2019-07-291-4/+2
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We dropped MySQL support and a lot of mysql specific code has been removed in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/29608. This comes in from the other direction and removes any `if postgresql?` branches.
* | | | | Added navbar searches usage ping counterFrancisco Javier López2019-07-291-4/+9
| | | | | | | | | | | | | | | | | | | | | | | | | Added usage ping counter when the user makes a search through the navbar search component.
* | | | | Merge branch 'frozen_string_spec_features' into 'master'Rémy Coutable2019-07-29521-4/+1046
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Add frozen_string_literal to spec/features See merge request gitlab-org/gitlab-ce!31131
| * | | | | Fix can't modify frozen String errorsfrozen_string_spec_featuresThong Kuah2019-07-264-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | Use unary plus as recommended by Performance/UnfreezeString cop
| * | | | | Add frozen_string_literal to spec/featuresThong Kuah2019-07-26521-0/+1042
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Using the sed script from https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
* | | | | | Add Job specific variablesMatija Čupić2019-07-291-5/+5
| |_|_|_|/ |/| | | | | | | | | | | | | | | | | | | Adds Job specific variables to facilitate specifying variables when running manual jobs.
* | | | | Changes capybara selector to qa-selectorTanya Pazitny2019-07-261-2/+2
| | | | | | | | | | | | | | | | | | | | Otherwise capybara hits ambiguous match.
* | | | | Merge branch 'remove-nested-groups-checks' into 'master'Lin Jen-Shin2019-07-2618-58/+24
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove code related to object hierarchy and MySQL Closes #65056 and #65055 See merge request gitlab-org/gitlab-ce!31095
| * | | | | Remove code related to object hierarchy in MySQLremove-nested-groups-checksHeinrich Lee Yu2019-07-2518-58/+24
| | |/ / / | |/| | | | | | | | | | | | | | | | | | These are not required because MySQL is not supported anymore
* | | | | Merge branch 'mc/feature/find-all-artifacts-for-sha' into 'master'Robert Speicher2019-07-261-2/+2
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Find build by sha from ref Closes #64534 and #45697 See merge request gitlab-org/gitlab-ce!30843
| * | | | | Find build by sha from refMatija Čupić2019-07-231-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Adds ability to find builds by sha when only specifying a ref.
* | | | | | Add UndoStack class - a custom undo/redo engineMartin Hanzel2019-07-261-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | It will be hooked up to the markdown editor later
* | | | | | Ensure Warden triggers after_authentication callbackImre Farkas2019-07-262-10/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | By not triggering the callback: - ActiveSession lookup keys are not cleaned - Devise also misses its hook related to session cleanup
* | | | | | Feature test for gfm embedding metricsTristan Read2019-07-261-0/+60
| |_|/ / / |/| | | |
* | | | | Merge branch '65088-incorrect-message-interpolation-on-project-listing' into ↵Fatih Acet2019-07-251-0/+13
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'master' Resolve "Incorrect message interpolation on project listing" Closes #65088 See merge request gitlab-org/gitlab-ce!31121
| * | | | | Fix incorrect use of message interpolation65088-incorrect-message-interpolation-on-project-listingAlex Kalderimis2019-07-241-0/+13
| | |/ / / | |/| | | | | | | | | | | | | Fixes https://gitlab.com/gitlab-org/gitlab-ce/issues/65088
* | | | | Merge branch 'frozen_string_spec_support' into 'master'Douwe Maan2019-07-251-1/+1
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Add frozen_string_literal to spec/support See merge request gitlab-org/gitlab-ce!31132
| * | | | | Fix frozen string errorThong Kuah2019-07-251-1/+1
| |/ / / /
* | | | | Copy private_access_spec from EErs-spec-parityRobert Speicher2019-07-241-1/+1
|/ / / /
* | | | Merge branch '52442-initial-mysql-support-removal' into 'master'Robert Speicher2019-07-231-7/+1
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove dead mysql code Closes #63191 See merge request gitlab-org/gitlab-ce!29608
| * | | | Remove dead MySQL codeNick Thomas2019-07-231-7/+1
| |/ / / | | | | | | | | | | | | None of this code can be reached any more, so it can all be removed
* | | | Update Mermaid to v8.2.3sh-update-mermaidStan Hu2019-07-231-2/+3
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes fill colors not working with Mermaid and pulls in a number of other fixes. * https://github.com/knsv/mermaid/blob/master/CHANGELOG.md * https://github.com/knsv/mermaid/#special-note-regarding-version-82 Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64601
* | | Bring backward compatibility for request profilesKamil Trzciński2019-07-231-2/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It seems that we missed the backward compatibility support for profiles in the existing folder. This commit also fixes some specs to be idempotent and work in a temporary directory which not always seems to be the case. This commit also brings the profile_spec.rb which seems to be missing.
* | | Merge branch 'maintainers-can-create-subgroup' into 'master'Sean McGivern2019-07-223-14/+101
|\ \ \ | | | | | | | | | | | | | | | | Add a group setting to allow Maintainers to create sub-groups See merge request gitlab-org/gitlab-ce!29718
| * | | Apply recomended changes from merge coachFabio Papa2019-07-191-2/+4
| | | |
| * | | Clean up the show_spec examples previously addedFabio Papa2019-07-191-4/+2
| | | |