Commit 3fe3cbf2 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Fix indendity test

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent cc04c5b8
......@@ -9,7 +9,7 @@
= link_to edit_admin_user_path(@user), class: "btn btn-grouped" do
%i.fa.fa-pencil-square-o
Edit
%hr
%ul.nav.nav-tabs
= nav_link(path: 'users#show') do
= link_to "Account", admin_user_path(@user)
......
......@@ -40,6 +40,7 @@ Feature: Admin Users
Given user "Pete" with ssh keys
And I visit admin users page
And click on user "Pete"
And click on ssh keys tab
Then I should see key list
And I click on the key title
Then I should see key details
......
......@@ -121,23 +121,27 @@ class Spinach::Features::AdminUsers < Spinach::FeatureSteps
end
step 'I visit "Pete" identities page in admin' do
Gitlab::OAuth::Provider.stub!(names: %w(twitter twitter_updated))
visit admin_user_identities_path(@user)
end
step 'I should see twitter details' do
expect(page).to have_content 'Identities for Pete'
expect(page).to have_content 'Pete'
expect(page).to have_content 'twitter'
end
step 'I modify twitter identity' do
click_link 'Edit'
within '.table' do
click_link 'Edit'
end
fill_in 'identity_extern_uid', with: '654321'
fill_in 'identity_provider', with: 'twitter_updated'
select 'twitter_updated', from: 'identity_provider'
click_button 'Save changes'
end
step 'I should see twitter details updated' do
expect(page).to have_content 'Identities for Pete'
expect(page).to have_content 'Pete'
expect(page).to have_content 'twitter_updated'
expect(page).to have_content '654321'
end
......@@ -147,7 +151,11 @@ class Spinach::Features::AdminUsers < Spinach::FeatureSteps
end
step 'I should not see twitter details' do
expect(page).to have_content 'Identities for Pete'
expect(page).to have_content 'Pete'
expect(page).to_not have_content 'twitter'
end
step 'click on ssh keys tab' do
click_link 'SSH keys'
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment