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/qa
AgeCommit message (Collapse)Author
2018-10-02Merge branch 'ce-7763-failure-in-geo-rb' into 'master'Douglas Barbosa Alexandre
[QA] Improve admin hashed-storage settings See merge request gitlab-org/gitlab-ce!22045
2018-10-02[QA] Improve admin hashed-storage settingsRémy Coutable
This was introduced by https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/7371 for which no QA was run, even though QA files were changed. This is a follow-up to https://gitlab.com/gitlab-org/gitlab-ee/merge_requests/7531. Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-10-01Don't check for the groups list before filteringMark Lapierre
Filter immediately because the page is going to reload anyway. And don't check for the loading indicator because it the groups list tree container appears after it disappears.
2018-09-28Optimize groups filterMark Lapierre
When searching for a group, submit a request that returns only the filtered list of groups. This makes the state of the page more reliable because it avoids having to wait for the list of groups to dynamically refresh.
2018-09-27Merge branch 'qa-fix-sanity-framework-test' into 'master'Douglas Barbosa Alexandre
Fix a sanity framework test See merge request gitlab-org/gitlab-ce!21956
2018-09-27Set initial password if promptedMark Lapierre
Fabricating a user might be the first action in the first test. If so, set the initial password
2018-09-27Fix a sanity framework testRémy Coutable
On first load, the login page displays the "Change your password" tab, not the "Sign in" tab. We now assert on the presence of a text that's always on this page. Note that in EE, since a license is added in the `#perform_before_hooks` method, the password is changed so that when we visit the login page, the "Sign in" tab is displayed as expected. That's why only the CE job failed to pass in https://gitlab.com/gitlab-org/gitlab-qa/pipelines/31060920. Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-09-26Refactor EventFilter and increase its test coverageRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-09-26Merge branch '51893-qa-fix-project-subgroup-dropdown-selector' into 'master'Rémy Coutable
Update selectors for QA::Page::Group::Show Closes #51893 See merge request gitlab-org/gitlab-ce!21925
2018-09-26Merge branch 'rename-squash-before-merge-vue-component' into 'master'Phil Hughes
Rename squash before merge vue component See merge request gitlab-org/gitlab-ce!21851
2018-09-26Update selectors for QA::Page::Group::ShowMark Lapierre
2018-09-25Merge branch '51316-qa-fix-transient-fork-spec-failure' into 'master'Rémy Coutable
Troubleshoot "Transient failure in qa/specs/features/project/fork_project_spec.rb" See merge request gitlab-org/gitlab-ce!21858
2018-09-25Assert successful sign in after registrationMark Lapierre
`.has_personal_area?` waits for sign in but does not ensure that it's successful. Raise an exception if not successful so we can capture a screenshot at the point of failure Adds a workaround and code to help troubleshoot why a new user doesn't stay signed in after loading a project page.
2018-09-24Allow registration when LDAP is enabledMark Lapierre
Update the login page object and related code so that a user can be registered when LDAP is enabled
2018-09-21Rename squash before merge vue componentGeorge Tsiolis
2018-09-20QA: Fix failure in merge_merge_request_from_fork_spec.rbMark Lapierre
2018-09-20Merge branch '44998-split-admin-settings-into-multiple-sub-pages' into 'master'Dmitriy Zaporozhets
Resolve "Split admin settings into multiple sub pages" Closes #44998 See merge request gitlab-org/gitlab-ce!21467
2018-09-19Unite green buttons under one css classDmitriy Zaporozhets
Rename btn-new, btn-create and btn-save to btn-success Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
2018-09-18[QA] consolidate selector patterns (1_manage/login)Dan Davison
2018-09-18Merge branch 'ml-fix-initial-admin-password' into 'master'Robert Speicher
QA: Fix: set initial password even if using admin credentials See merge request gitlab-org/gitlab-ce!21785
2018-09-18Merge branch 'ml-qa-spec-use-ssh-key' into 'master'Robert Speicher
Add a new scenario to add an SSH key, perform Git actions with it, and then remove the key See merge request gitlab-org/gitlab-ce!19754
2018-09-17Fix: set initial password even if using admin credentialsMark Lapierre
2018-09-17Fix grammar (setup to set-up) in code comments, spec, views, etc.Marcel Amirault
2018-09-15Add an SSH key and use it to clone and pushMark Lapierre
Adds 2 end-to-end tests: 1. Add and remove an SSH key 2. Add an SSH key and use it to clone and push Includes changes to factories to allow Git actions via SSH
2018-09-13Prevent ADO failing prematurelyMayra Cabrera
Ensures code_quality job in Auto DevOps pipeline is disabled, as it takes too long and times out the test. Closes https://gitlab.com/gitlab-org/gitlab-qa/issues/323
2018-09-11Merge branch 'sh-test-ldap-clones-via-gitlab-qa' into 'master'Grzegorz Bizon
QA: Add support for testing Git over HTTP with LDAP users See merge request gitlab-org/gitlab-ce!21354
2018-09-11merge master and resolve conflictsMartin Wortschack
2018-09-11Enable signing in as admin when adding a licenseMark Lapierre
Adds the ability to use admin credentials to add a license so that when testing an LDAP user on EE the LDAP user does not have to be an admin. Admin credentials default to GDK's root user. Can be overriden via ADMIN_USERNAME and ADMIN_PASSWORD environment variables.
2018-09-10Merge branch 'qa-fix-specs-runner-when-args-given' into 'master'Rémy Coutable
[QA] Fix arguments passed to RSpec::Core::Runner See merge request gitlab-org/gitlab-ce!21578
2018-09-10Merge branch 'sh-fix-ldap-qa' into 'master'Rémy Coutable
Fix LDAP QA specs failing due to button change See merge request gitlab-org/gitlab-ce!21622
2018-09-09Fix LDAP QA specs failing due to button changeStan Hu
The LDAP tab is no longer a button, but is now a link. Update the QA page to check for a link.
2018-09-09Fix QA builds failing due to change in new project page behaviorStan Hu
https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/21386 re-introduced the explicit creation of the project name separate from the project path. Filling in the name does automatically populate the path, but the reverse is not true. We now fill in the name instead of the path. Closes https://gitlab.com/gitlab-org/gitlab-qa/issues/322
2018-09-07Merge branch '51180-update-ffi-to-1.9.25' into 'master'Robert Speicher
Update ffi to 1.9.25 Closes #51180 See merge request gitlab-org/gitlab-ce!21561
2018-09-07Merge branch 'qa-change-sanity-failing-to-sanity-framework' into 'master'Grzegorz Bizon
[QA] Change Test::Sanity::Failing to Test::Sanity::Framework See merge request gitlab-org/gitlab-ce!21568
2018-09-07Resolve "Improve handling of projects shared with a group"Dennis Tang
2018-09-07[QA] Fix arguments passed to RSpec::Core::RunnerRémy Coutable
- When -t or --tag are passed, we shouldn't exclude the :orchestrated tag - When test path is passed, we shouldn't append the default test path Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-09-06[QA] Change Test::Sanity::Failing to Test::Sanity::FrameworkRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-09-06merge master and resolve conflictsMartin Wortschack
2018-09-06Update ffi to 1.9.25Takuya Noguchi
2018-09-06Resolve "Improve project overview UI"Dennis Tang
2018-09-05[QA] Ensure groups filtering does not happen before the groups list is loadedRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-09-05remove trailing whitespacesMartin Wortschack
2018-09-05fix qa selectorMartin Wortschack
2018-09-05Merge branch ↵Grzegorz Bizon
'50963-qa-orchestrated-tests-don-t-run-due-to-wrong-tag-filters-qa' into 'master' Resolve "[QA] Orchestrated tests don't run due to wrong tag filters" Closes #49654 and #50963 See merge request gitlab-org/gitlab-ce!21468
2018-09-04Merge branch '50930-update-rubyzip-to-1-2-2' into 'master'Robert Speicher
Update rubyzip gem to 1.2.2 (CVE-2018-1000544) Closes #50930 See merge request gitlab-org/gitlab-ce!21460
2018-09-04[QA] Fix Specs::Runner that would always excluding the orchectsrated tagRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-09-04Merge branch 'qa-28' into 'master'Grzegorz Bizon
[QA] Add a new Test::Sanity::Failing scenario that always fails Closes gitlab-qa#28 See merge request gitlab-org/gitlab-ce!21477
2018-09-04Merge branch ↵Grzegorz Bizon
'50991-qa-page-shared-clonepanel-should-be-moved-to-page-component-clonepanel-qa' into 'master' Resolve "[QA] Page::Shared::ClonePanel should be moved to Page::Component::ClonePanel" Closes #50991 See merge request gitlab-org/gitlab-ce!21479
2018-09-04Fix QA ObjectStorage not inheriting from Test::Instance::AllStan Hu
2018-09-03[QA] Move Page::Shared::ClonePanel to Page::Component::ClonePanelRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>