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
c54f6c5f
Commit
c54f6c5f
authored
Jan 03, 2020
by
Mark Lapierre
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update github import test
It needs to click the authenticate button, and then the repos are listed
parent
e45c2720
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
10 deletions
+7
-10
app/views/import/github/new.html.haml
app/views/import/github/new.html.haml
+2
-2
qa/qa/page/project/import/github.rb
qa/qa/page/project/import/github.rb
+5
-7
qa/qa/resource/project_imported_from_github.rb
qa/qa/resource/project_imported_from_github.rb
+0
-1
No files found.
app/views/import/github/new.html.haml
View file @
c54f6c5f
...
...
@@ -21,7 +21,7 @@
=
form_tag
personal_access_token_import_github_path
,
method: :post
do
.form-group
%label
.label-bold
=
_
(
'Personal Access Token'
)
=
text_field_tag
:personal_access_token
,
''
,
class:
'form-control'
,
placeholder:
_
(
'e.g. %{token}'
)
%
{
token:
'8d3f016698e...'
}
=
text_field_tag
:personal_access_token
,
''
,
class:
'form-control'
,
placeholder:
_
(
'e.g. %{token}'
)
%
{
token:
'8d3f016698e...'
}
,
data:
{
qa_selector:
'personal_access_token_field'
}
%span
.form-text.text-muted
=
import_github_personal_access_token_message
...
...
@@ -29,4 +29,4 @@
.form-actions.d-flex.justify-content-end
=
link_to
_
(
'Cancel'
),
new_project_path
,
class:
'btn'
=
submit_tag
_
(
'Authenticate'
),
class:
'btn btn-success ml-2'
=
submit_tag
_
(
'Authenticate'
),
class:
'btn btn-success ml-2'
,
data:
{
qa_selector:
'authenticate_button'
}
qa/qa/page/project/import/github.rb
View file @
c54f6c5f
...
...
@@ -8,8 +8,8 @@ module QA
include
Page
::
Component
::
Select2
view
'app/views/import/github/new.html.haml'
do
element
:personal_access_token_field
,
'text_field_tag :personal_access_token'
# rubocop:disable QA/ElementWithPattern
element
:authenticate_button
,
"submit_tag _('Authenticate')"
# rubocop:disable QA/ElementWithPattern
element
:personal_access_token_field
element
:authenticate_button
end
view
'app/assets/javascripts/import_projects/components/provider_repo_table_row.vue'
do
...
...
@@ -20,11 +20,9 @@ module QA
end
def
add_personal_access_token
(
personal_access_token
)
fill_in
'personal_access_token'
,
with:
personal_access_token
end
def
list_repos
click_button
'List your GitHub repositories'
fill_element
(
:personal_access_token_field
,
personal_access_token
)
click_element
(
:authenticate_button
)
finished_loading?
end
def
import!
(
full_path
,
name
)
...
...
qa/qa/resource/project_imported_from_github.rb
View file @
c54f6c5f
...
...
@@ -23,7 +23,6 @@ module QA
Page
::
Project
::
Import
::
Github
.
perform
do
|
import_page
|
import_page
.
add_personal_access_token
(
@personal_access_token
)
import_page
.
list_repos
import_page
.
import!
(
@github_repository_path
,
@name
)
end
end
...
...
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