░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/spec/javascripts/jsx/developer_keys/actions
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: developerKeysActionsSpec.js
/* * Copyright (C) 2018 - present Instructure, Inc. * * This file is part of Canvas. * * Canvas is free software: you can redistribute and/or modify under * the terms of the GNU Affero General Public License as published by the Free * Software Foundation, version 3 of the License. * * Canvas is distributed in the hope that will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR * A PARTICULAR PURPOSE. See the GNU Affero General Public License for more * details. * * You should have received a copy of the GNU Affero General Public License along * with this program. If not, see <http://www.gnu.org/licenses/>. */ import actions from 'ui/features/developer_keys_v2/react/actions/developerKeysActions' import storeCreator from 'ui/features/developer_keys_v2/react/store/store' import axios from '@canvas/axios' const store = storeCreator() QUnit.module('Developer key actions') function thenStub() { return { then: () => { return {catch: () => {}} }, } } test('listInheritedDeveloperKeysStart returns proper action', () => { const retVal = actions.listInheritedDeveloperKeysStart() equal(retVal.type, 'LIST_INHERITED_DEVELOPER_KEYS_START') }) test('listInheritedDeveloperKeysStart returns a payload', () => { const payload = {test: 'test'} const retVal = actions.listInheritedDeveloperKeysStart(payload) equal(retVal.payload, payload) }) test('listInheritedDeveloperKeysSuccessful returns proper action', () => { const retVal = actions.listInheritedDeveloperKeysSuccessful() equal(retVal.type, 'LIST_INHERITED_DEVELOPER_KEYS_SUCCESSFUL') }) test('listInheritedDeveloperKeysSuccessful returns a payload', () => { const payload = {test: 'test'} const retVal = actions.listInheritedDeveloperKeysSuccessful(payload) equal(retVal.payload, payload) }) test('listInheritedDeveloperKeysFailed returns proper action', () => { const retVal = actions.listInheritedDeveloperKeysFailed() equal(retVal.type, 'LIST_INHERITED_DEVELOPER_KEYS_FAILED') }) test('listInheritedDeveloperKeysFailed returns a error', () => { const error = {test: 'test'} const retVal = actions.listInheritedDeveloperKeysFailed(error) equal(retVal.payload, error) }) test('getDeveloperKeys retrieves account key data', () => { const getStub = sinon.stub(axios, 'get').returns(thenStub()) actions.getDeveloperKeys('http://www.test.com', {})( () => {}, () => {} ) ok(getStub.calledWith('http://www.test.com')) axios.get.restore() }) test('getDeveloperKeys retrieves inherited account key data', () => { const getStub = sinon.stub(axios, 'get').returns(thenStub()) actions.getDeveloperKeys('http://www.test.com', {})( () => {}, () => {} ) ok(getStub.calledWith('http://www.test.com?inherited=true')) axios.get.restore() }) test('getRemainingDeveloperKeys requests keys from the specified URL', () => { const getStub = sinon.stub(axios, 'get').returns(thenStub()) actions.getRemainingDeveloperKeys('http://www.test.com', [])( () => {}, () => {} ) ok(getStub.calledWith('http://www.test.com')) axios.get.restore() }) test('getRemainingInheritedDeveloperKeys requests keys from the specified URL with inherited param', () => { const getStub = sinon.stub(axios, 'get').returns(thenStub()) actions.getRemainingInheritedDeveloperKeys('http://www.test.com', [])( () => {}, () => {} ) ok(getStub.calledWith('http://www.test.com?inherited=true')) axios.get.restore() }) test('listDeveloperKeyScopes makes a request to the scopes endpoint', () => { const getStub = sinon.stub(axios, 'get').returns(thenStub()) actions.listDeveloperKeyScopes(1)(store.dispatch) ok(getStub.calledWith('/api/v1/accounts/1/scopes?group_by=resource_name')) axios.get.restore() })
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 developerKeysActionsSpec.js
JS
3.7 KB
2023-09-24 03:36
EDIT