░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/packages/canvas-rce/test/sidebar/containers
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: sidebarHandlers.test.js
/* * Copyright (C) 2018 - present Instructure, Inc. * * This file is part of Canvas. * * Canvas is free software: you can redistribute it and/or modify it 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 it 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 sinon from 'sinon' import sidebarHandlers from '../../../src/sidebar/containers/sidebarHandlers' import * as ui from '../../../src/sidebar/actions/ui' import * as data from '../../../src/sidebar/actions/data' import * as images from '../../../src/sidebar/actions/images' import * as upload from '../../../src/sidebar/actions/upload' import * as flickr from '../../../src/sidebar/actions/flickr' import * as files from '../../../src/sidebar/actions/files' import * as documents from '../../../src/sidebar/actions/documents' import * as context from '../../../src/sidebar/actions/filter' import * as media from '../../../src/sidebar/actions/media' import * as all_files from '../../../src/sidebar/actions/all_files' describe('sidebarHandlers', () => { let handlers, dispatch beforeEach(() => { dispatch = sinon.spy() handlers = sidebarHandlers(dispatch) }) function testHandler(key, actions, method, ...args) { const ret = {} sinon.stub(actions, method).returns(ret) handlers[key](...args) sinon.assert.calledWithExactly(actions[method], ...args) sinon.assert.calledWithExactly(dispatch, ret) actions[method].restore() } it('ties ui change tab to store', () => { testHandler('onChangeTab', ui, 'changeTab', 1) }) it('ties ui change accordion to store', () => { testHandler('onChangeAccordion', ui, 'changeAccordion', 1) }) it('ties data fetch initial page to store', () => { testHandler('fetchInitialPage', data, 'fetchInitialPage', 'key') }) it('ties data fetch next page to store', () => { testHandler('fetchNextPage', data, 'fetchNextPage', 'key') }) it('ties files toggle folder to store', () => { testHandler('toggleFolder', files, 'toggle', 1) }) it('ties upload fetch folders to store', () => { testHandler('fetchFolders', upload, 'fetchFolders') }) it('ties images fetch initial images to store', () => { testHandler('fetchInitialImages', images, 'fetchInitialImages', {category: 'uncategorized'}) }) it('ties images fetch next images to store', () => { testHandler('fetchNextImages', images, 'fetchNextImages', {category: 'uncategorized'}) }) it('ties upload preflight to store', () => { testHandler('startUpload', upload, 'uploadPreflight', 'images', { fi: 'le' }) }) it('ties flickr search to store', () => { testHandler('flickrSearch', flickr, 'searchFlickr', 'cats') }) it('ties toggle flickr form to store', () => { testHandler('toggleFlickrForm', flickr, 'openOrCloseFlickrForm') }) it('ties toggle upload form to store', () => { testHandler('toggleUploadForm', upload, 'openOrCloseUploadForm') }) it('ties icon maker uploads to store', () => { testHandler('startIconMakerUpload', upload, 'uploadToIconMakerFolder', {}, undefined) }) it('ties media upload to store', () => { testHandler('startMediaUpload', upload, 'uploadToMediaFolder', 'images', {}) }) it('ties documents fetch initial documents to store', () => { testHandler('fetchInitialDocs', documents, 'fetchInitialDocs') }) it('ties documents fetch next documents to store', () => { testHandler('fetchNextDocs', documents, 'fetchNextDocs') }) it('ties context change context to store', () => { testHandler('onChangeContext', context, 'changeContext', 'newContext') }) it('ties searchString change to store', () => { testHandler('onChangeSearchString', context, 'changeSearchString', 'new-string') }) it('ties all file loading change to store', () => { testHandler('onAllFilesLoading', all_files, 'allFilesLoading', true) }) it('ties media fetch initial media to store', () => { testHandler('fetchInitialMedia', media, 'fetchInitialMedia') }) it('ties media fetch next media to store', () => { testHandler('fetchNextMedia', media, 'fetchNextMedia') }) it('ties media update media object to store', () => { testHandler('updateMediaObject', media, 'updateMediaObject', { media_object_id: 'm-foo', title: 'new title' }) }) })
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 sidebarHandlers.test.js
JS
4.7 KB
2023-09-24 03:36
EDIT