// Copyright 2016 Documize Inc. . All rights reserved. // // This software (Documize Community Edition) is licensed under // GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html // // You can operate outside the AGPL restrictions by purchasing // Documize Enterprise Edition and obtaining a commercial license // by contacting . // // https://documize.com import { test } from 'qunit'; import moduleForAcceptance from 'documize/tests/helpers/module-for-acceptance'; moduleForAcceptance('Acceptance | Authentication'); test('visiting /auth/login and logging in', function (assert) { server.create('meta', { allowAnonymousAccess: false }); visit('/auth/login'); fillIn('#authEmail', 'brizdigital@gmail.com'); fillIn('#authPassword', 'zinyando123'); click('button'); andThen(function () { assert.equal(currentURL(), '/s/VzMuyEw_3WqiafcG/my-project', 'Login successful'); }); }); test('logging out a user', function (assert) { server.create('meta', { allowAnonymousAccess: false }); userLogin(); visit('/auth/logout'); andThen(function () { assert.equal(currentURL(), '/auth/login', 'Logging out successful'); }); }); test('successful sso login authenticates redirects to dashboard', function (assert) { server.create('meta', { allowAnonymousAccess: false }); visit('/auth/sso/OmJyaXpkaWdpdGFsQGdtYWlsLmNvbTp6aW55YW5kbzEyMw=='); andThen(function () { assert.equal(currentURL(), '/s/VzMuyEw_3WqiafcG/my-project', 'SSO login successful'); }); }); test('sso login with bad token should redirect to login', function (assert) { server.create('meta', { allowAnonymousAccess: false }); visit('/auth/sso/randomToken1234567890'); andThen(function () { assert.equal(currentURL(), '/auth/login', 'SSO login unsuccessful'); }); });