Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
14216d92
Commit
14216d92
authored
Aug 25, 2021
by
ddavison
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix old occurrences of QA::Support::Api
parent
e1d1bcda
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
qa/qa/specs/features/ee/api/enablement/elasticsearch/index_tests/issues_index/issue_index_spec.rb
...lasticsearch/index_tests/issues_index/issue_index_spec.rb
+1
-1
qa/qa/specs/features/ee/api/enablement/elasticsearch/index_tests/main_index/blob_index_spec.rb
...t/elasticsearch/index_tests/main_index/blob_index_spec.rb
+1
-1
qa/qa/specs/features/ee/api/enablement/elasticsearch/index_tests/merge_request_index/merge_request_index_spec.rb
...dex_tests/merge_request_index/merge_request_index_spec.rb
+1
-1
qa/qa/specs/features/ee/api/enablement/elasticsearch/index_tests/notes_index/note_index_spec.rb
.../elasticsearch/index_tests/notes_index/note_index_spec.rb
+1
-1
No files found.
qa/qa/specs/features/ee/api/enablement/elasticsearch/index_tests/issues_index/issue_index_spec.rb
View file @
14216d92
...
...
@@ -34,7 +34,7 @@ module QA
it
'finds issue that matches description'
,
testcase:
'https://gitlab.com/gitlab-org/quality/testcases/-/issues/1870'
do
QA
::
Support
::
Retrier
.
retry_on_exception
(
max_attempts:
Runtime
::
Search
::
RETRY_MAX_ITERATION
,
sleep_interval:
Runtime
::
Search
::
RETRY_SLEEP_INTERVAL
)
do
get
Runtime
::
Search
.
create_search_request
(
api_client
,
'issues'
,
issue
.
description
).
url
expect_status
(
QA
::
Support
::
A
pi
::
HTTP_STATUS_OK
)
expect_status
(
QA
::
Support
::
A
PI
::
HTTP_STATUS_OK
)
raise
'Empty search result returned'
if
json_body
.
empty?
...
...
qa/qa/specs/features/ee/api/enablement/elasticsearch/index_tests/main_index/blob_index_spec.rb
View file @
14216d92
...
...
@@ -42,7 +42,7 @@ module QA
it
'finds blob that matches file content'
,
testcase:
'https://gitlab.com/gitlab-org/quality/testcases/-/issues/1869'
do
QA
::
Support
::
Retrier
.
retry_on_exception
(
max_attempts:
Runtime
::
Search
::
RETRY_MAX_ITERATION
,
sleep_interval:
Runtime
::
Search
::
RETRY_SLEEP_INTERVAL
)
do
get
Runtime
::
Search
.
create_search_request
(
api_client
,
'blobs'
,
project_file_content
).
url
expect_status
(
QA
::
Support
::
A
pi
::
HTTP_STATUS_OK
)
expect_status
(
QA
::
Support
::
A
PI
::
HTTP_STATUS_OK
)
raise
'Empty search result returned'
if
json_body
.
empty?
...
...
qa/qa/specs/features/ee/api/enablement/elasticsearch/index_tests/merge_request_index/merge_request_index_spec.rb
View file @
14216d92
...
...
@@ -34,7 +34,7 @@ module QA
it
'finds merge request that matches description'
,
testcase:
'https://gitlab.com/gitlab-org/quality/testcases/-/issues/1867'
do
QA
::
Support
::
Retrier
.
retry_on_exception
(
max_attempts:
Runtime
::
Search
::
RETRY_MAX_ITERATION
,
sleep_interval:
Runtime
::
Search
::
RETRY_SLEEP_INTERVAL
)
do
get
Runtime
::
Search
.
create_search_request
(
api_client
,
'merge_requests'
,
merge_request
.
description
).
url
expect_status
(
QA
::
Support
::
A
pi
::
HTTP_STATUS_OK
)
expect_status
(
QA
::
Support
::
A
PI
::
HTTP_STATUS_OK
)
raise
'Empty search result returned'
if
json_body
.
empty?
...
...
qa/qa/specs/features/ee/api/enablement/elasticsearch/index_tests/notes_index/note_index_spec.rb
View file @
14216d92
...
...
@@ -41,7 +41,7 @@ module QA
it
'finds note that matches note body'
,
testcase:
'https://gitlab.com/gitlab-org/quality/testcases/-/issues/1868'
do
QA
::
Support
::
Retrier
.
retry_on_exception
(
max_attempts:
Runtime
::
Search
::
RETRY_MAX_ITERATION
,
sleep_interval:
Runtime
::
Search
::
RETRY_SLEEP_INTERVAL
)
do
get
Runtime
::
Search
.
create_search_request
(
api_client
,
'notes'
,
note
.
body
).
url
expect_status
(
QA
::
Support
::
A
pi
::
HTTP_STATUS_OK
)
expect_status
(
QA
::
Support
::
A
PI
::
HTTP_STATUS_OK
)
raise
'Empty search result returned'
if
json_body
.
empty?
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment