Commit 87c571f8 authored by Scott Escue's avatar Scott Escue Committed by Mike Greiling

Addressing feedback from most recent reviews.

parent 2cbc475e
...@@ -4,14 +4,6 @@ import { getLocationHash } from './url_utility'; ...@@ -4,14 +4,6 @@ import { getLocationHash } from './url_utility';
import { convertToCamelCase } from './text_utility'; import { convertToCamelCase } from './text_utility';
import { isObject } from './type_utility'; import { isObject } from './type_utility';
/**
* Simply returns `window.location`. This function exists to provide a means to spy
* `window.location` in unit tests.
*
* @returns {Location | string | any} The browser's `window.location`
*/
export const windowLocation = () => window.location;
export const getPagePath = (index = 0) => { export const getPagePath = (index = 0) => {
const page = $('body').attr('data-page') || ''; const page = $('body').attr('data-page') || '';
......
import { windowLocation } from './common_utils';
// Returns an array containing the value(s) of the // Returns an array containing the value(s) of the
// of the key passed as an argument // of the key passed as an argument
export function getParameterValues(sParam) { export function getParameterValues(sParam) {
...@@ -53,11 +51,11 @@ export function mergeUrlParams(params, url) { ...@@ -53,11 +51,11 @@ export function mergeUrlParams(params, url) {
* @param {string} [url=windowLocation().href] - url from which the query param will be removed * @param {string} [url=windowLocation().href] - url from which the query param will be removed
* @returns {string} A copy of the original url but without the query param * @returns {string} A copy of the original url but without the query param
*/ */
export function removeParams(params, url = windowLocation().href) { export function removeParams(params, url = window.location.href) {
const [rootAndQuery, fragment] = url.split('#'); const [rootAndQuery, fragment] = url.split('#');
const [root, query] = rootAndQuery.split('?'); const [root, query] = rootAndQuery.split('?');
if (query === undefined) { if (!query) {
return url; return url;
} }
......
...@@ -6,8 +6,8 @@ import { mergeUrlParams, setUrlFragment } from '~/lib/utils/url_utility'; ...@@ -6,8 +6,8 @@ import { mergeUrlParams, setUrlFragment } from '~/lib/utils/url_utility';
* *
* @param fragment {string} - url fragment to be preserved * @param fragment {string} - url fragment to be preserved
*/ */
export default function preserveUrlFragment(fragment) { export default function preserveUrlFragment(fragment = '') {
if (fragment && fragment !== '') { if (fragment) {
const normalFragment = fragment.replace(/^#/, ''); const normalFragment = fragment.replace(/^#/, '');
// Append the fragment to all sign-in/sign-up form actions so it is preserved when the user is // Append the fragment to all sign-in/sign-up form actions so it is preserved when the user is
......
require 'spec_helper'
describe 'Sessions (JavaScript fixtures)' do
include JavaScriptFixturesHelpers
before(:all) do
clean_frontend_fixtures('sessions/')
end
describe SessionsController, '(JavaScript fixtures)', type: :controller do
include DeviseHelpers
render_views
before do
set_devise_mapping(context: @request)
end
it 'sessions/new.html.raw' do |example|
get :new
expect(response).to be_success
store_frontend_fixture(response, example.description)
end
end
end
#signin-container
.tab-content
.active.login-box.tab-pane
.login-body
%form#new_ldap_user{ action: '/users/auth/ldapmain/callback', method: 'post' }
.login-box.tab-pane
.login-body
%form#new_user.new_user{ action: '/users/sign_in', method: 'post' }
#register-pane.login-box.tab-pane
.login-body
%form#new_new_user.new_new_user{ action: '/users', method: 'post' }
.omniauth-container
%span.light
%a#oauth-login-auth0.oauth-login.btn{ href: '/users/auth/auth0' } Auth0
%span.light
%a#oauth-login-facebook.oauth-login.btn{ href:'/users/auth/facebook?remember_me=1' } Facebook
%span.light
%a#oauth-login-saml.oauth-login.btn{ href:'/users/auth/saml' } SAML
import UrlUtility, * as urlUtils from '~/lib/utils/url_utility'; import * as urlUtils from '~/lib/utils/url_utility';
describe('URL utility', () => { describe('URL utility', () => {
describe('webIDEUrl', () => { describe('webIDEUrl', () => {
...@@ -86,20 +86,6 @@ describe('URL utility', () => { ...@@ -86,20 +86,6 @@ describe('URL utility', () => {
expect(url).toBe('/home?l=en_US#H2'); expect(url).toBe('/home?l=en_US#H2');
}); });
}); });
describe('when no url is passed', () => {
it('should remove params from window.location.href', () => {
spyOnDependency(UrlUtility, 'windowLocation').and.callFake(() => {
const anchor = document.createElement('a');
anchor.href = 'https://mysite.com/?zip=11111&locale=en_US&ads=false#privacy';
return anchor;
});
const url = urlUtils.removeParams(['locale']);
expect(url).toBe('https://mysite.com/?zip=11111&ads=false#privacy');
});
});
}); });
describe('setUrlFragment', () => { describe('setUrlFragment', () => {
......
...@@ -2,33 +2,60 @@ import $ from 'jquery'; ...@@ -2,33 +2,60 @@ import $ from 'jquery';
import preserveUrlFragment from '~/pages/sessions/new/preserve_url_fragment'; import preserveUrlFragment from '~/pages/sessions/new/preserve_url_fragment';
describe('preserve_url_fragment', () => { describe('preserve_url_fragment', () => {
preloadFixtures('static/signin_forms_and_buttons.html.raw'); preloadFixtures('sessions/new.html.raw');
beforeEach(() => { beforeEach(() => {
loadFixtures('static/signin_forms_and_buttons.html.raw'); loadFixtures('sessions/new.html.raw');
}); });
it('adds the url fragment to all login and sign up form actions', () => { it('adds the url fragment to all login and sign up form actions', () => {
preserveUrlFragment('#L65'); preserveUrlFragment('#L65');
expect($('#new_ldap_user').attr('action')).toBe('/users/auth/ldapmain/callback#L65'); expect($('#new_user').attr('action')).toBe('http://test.host/users/sign_in#L65');
expect($('#new_user').attr('action')).toBe('/users/sign_in#L65'); expect($('#new_new_user').attr('action')).toBe('http://test.host/users#L65');
expect($('#new_new_user').attr('action')).toBe('/users#L65');
}); });
it('adds the "redirect_fragment" query parameter to all OAuth and SAML login buttons', () => { it('does not add an empty url fragment to login and sign up form actions', () => {
preserveUrlFragment('#L65'); preserveUrlFragment();
expect($('#new_user').attr('action')).toBe('http://test.host/users/sign_in');
expect($('#new_new_user').attr('action')).toBe('http://test.host/users');
});
it('does not add an empty query parameter to OmniAuth login buttons', () => {
preserveUrlFragment();
expect($('#oauth-login-cas3').attr('href')).toBe('http://test.host/users/auth/cas3');
expect($('.omniauth-container #oauth-login-auth0').attr('href')).toBe( expect($('.omniauth-container #oauth-login-auth0').attr('href')).toBe(
'/users/auth/auth0?redirect_fragment=L65', 'http://test.host/users/auth/auth0',
); );
});
expect($('.omniauth-container #oauth-login-facebook').attr('href')).toBe( describe('adds "redirect_fragment" query parameter to OmniAuth login buttons', () => {
'/users/auth/facebook?remember_me=1&redirect_fragment=L65', it('when "remember_me" is not present', () => {
); preserveUrlFragment('#L65');
expect($('.omniauth-container #oauth-login-saml').attr('href')).toBe( expect($('#oauth-login-cas3').attr('href')).toBe(
'/users/auth/saml?redirect_fragment=L65', 'http://test.host/users/auth/cas3?redirect_fragment=L65',
); );
expect($('.omniauth-container #oauth-login-auth0').attr('href')).toBe(
'http://test.host/users/auth/auth0?redirect_fragment=L65',
);
});
it('when "remember-me" is present', () => {
$('a.omniauth-btn').attr('href', (i, href) => `${href}?remember_me=1`);
preserveUrlFragment('#L65');
expect($('#oauth-login-cas3').attr('href')).toBe(
'http://test.host/users/auth/cas3?remember_me=1&redirect_fragment=L65',
);
expect($('#oauth-login-auth0').attr('href')).toBe(
'http://test.host/users/auth/auth0?remember_me=1&redirect_fragment=L65',
);
});
}); });
}); });
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