░▒▓████████████████████████████████▓▒░ ░▒▓█ ▓▒░ ░▒▓█ ~ S W A M P ~ ▓▒░ ░▒▓█ ▓▒░ ░▒▓████████████████████████████████▓▒░
pplmvsvm
LOCATION:
/var/www/canvas/ui/shared/files/util/__tests__
☗ ROOT
↻ REFRESH
✎ CARVE FLESH
EDITING: apiFileUtils.test.js
/* * Copyright (C) 2017 - 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 moxios from 'moxios' import sinon from 'sinon' import {uploadFile} from '../apiFileUtils' describe('apiFileUtils', () => { beforeEach(() => { moxios.install() }) afterEach(() => { moxios.uninstall() }) describe('uploadFile', () => { it('runs the onSuccess method after upload', done => { const onSuccess = sinon.spy() const onFail = sinon.spy() moxios.stubRequest('/api/v1/folders/1/files', { status: 200, response: { upload_url: 'http://new_url', upload_params: { Filename: 'file', key: 'folder/filename', 'content-type': 'image/png', }, file_param: 'attachment[uploaded_data]', }, }) moxios.stubRequest('http://new_url', { status: 200, response: 'yo', }) const file = {name: 'file1', size: 0} uploadFile(file, '1', onSuccess, onFail) moxios.wait(() => { moxios.wait(() => { expect(onSuccess.calledOnce).toBeTruthy() expect(onSuccess.calledWith('yo')).toBeTruthy() expect(onFail.notCalled).toBeTruthy() done() }) }) }) it('runs the onFailure method on upload failure', done => { const onSuccess = sinon.spy() const onFail = sinon.spy() moxios.stubRequest('/api/v1/folders/1/files', { status: 200, response: { upload_url: 'http://new_url', upload_params: { Filename: 'file', key: 'folder/filename', 'content-type': 'image/png', }, file_param: 'attachment[uploaded_data]', }, }) moxios.stubRequest('http://new_url', { status: 400, response: 'yo', }) const file = {name: 'file2', size: 0} uploadFile(file, '1', onSuccess, onFail) moxios.wait(() => { moxios.wait(() => { expect(onFail.calledOnce).toBeTruthy() expect(onSuccess.notCalled).toBeTruthy() done() }) }) }) }) describe('onFileUploadInfoReceived', () => { it('runs the onFailure on file prep failure', done => { const onSuccess = sinon.spy() const onFail = sinon.spy() moxios.stubRequest('/api/v1/folders/1/files', { status: 400, response: {data: {formData: 'form', uploadUrl: 'new_url'}}, }) const file = {name: 'file2', size: 0} uploadFile(file, '1', onSuccess, onFail) moxios.wait(() => { expect(onFail.calledOnce).toBeTruthy() expect(onSuccess.notCalled).toBeTruthy() done() }) }) }) })
CANCEL
Name
Type
Size
Modified
Actions
↩ ..
DIR
—
—
📄 apiFileUtils.test.js
JS
3.3 KB
2023-09-24 03:36
EDIT