forked from alibaba-fusion/next
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test(Upload): add text-list test case
- Loading branch information
1 parent
32149af
commit 0507ff3
Showing
1 changed file
with
113 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
import React from 'react'; | ||
import ReactDOM from 'react-dom'; | ||
import Enzyme, { shallow, mount } from 'enzyme'; | ||
import Adapter from 'enzyme-adapter-react-16'; | ||
import assert from 'power-assert'; | ||
import sinon from 'sinon'; | ||
import Upload from '../../src/upload/index'; | ||
import request from '../../src/upload/runtime/request' | ||
import { func } from '../../src/util'; | ||
|
||
Enzyme.configure({ adapter: new Adapter() }); | ||
|
||
|
||
const defaultValue = [ | ||
{ | ||
name: 'IMG.png', | ||
state: 'done', | ||
size: 1024, | ||
url: 'https://img.alicdn.com/tps/TB19O79MVXXXXcZXVXXXXXXXXXX-1024-1024.jpg', | ||
} | ||
]; | ||
|
||
function fixBinary(bin) { | ||
const length = bin.length; | ||
const buf = new ArrayBuffer(length); | ||
const arr = new Uint8Array(buf); | ||
for (let i = 0; i < length; i++) { | ||
arr[i] = bin.charCodeAt(i); | ||
} | ||
return buf; | ||
} | ||
|
||
function buildFile(filename = 'test') { | ||
const base64 = 'iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggkFBTzlUWEwwWTRPSHdBQUFBQkpSVTVFcmtKZ2dnPT0='; | ||
const binary = fixBinary(atob(base64)); | ||
const blob = new Blob([binary], { type: 'image/png' }); | ||
const file = new File([blob], `${filename}.png`, { type: 'image/png' }); | ||
return file; | ||
} | ||
|
||
function triggerUploadEvent(wrapper, done, callback) { | ||
if (typeof atob === 'function' && typeof Blob === 'function' && typeof File === 'function') { | ||
// 模拟文件上传 | ||
const file = buildFile(); | ||
wrapper.find('input').simulate('change', { target: { files: [file] } }); | ||
callback && callback(wrapper); | ||
} else { | ||
done(); | ||
} | ||
} | ||
|
||
describe('TextUpload', () => { | ||
let requests; | ||
let xhr; | ||
|
||
beforeEach(() => { | ||
xhr = sinon.useFakeXMLHttpRequest(); | ||
requests = []; | ||
xhr.onCreate = req => requests.push(req); | ||
}); | ||
|
||
afterEach(() => { | ||
xhr.restore(); | ||
}); | ||
|
||
describe('render', () => { | ||
it('should render a wrapper upload', () => { | ||
const wrapper = mount(<Upload listType="text" defaultValue={defaultValue} />); | ||
assert(wrapper.find('.next-upload').length === 1); | ||
// remove item | ||
assert(wrapper.find('.next-upload-list-item').length === 1); | ||
}); | ||
it('should render a error item without text', () => { | ||
const wrapper = mount(<Upload listType="text" defaultValue={[{ | ||
name: 'IMG.png', | ||
state: 'error', | ||
size: 1024, | ||
url: 'https://img.alicdn.com/tps/TB19O79MVXXXXcZXVXXXXXXXXXX-1024-1024.jpg', | ||
}]} />); | ||
assert(wrapper.find('.next-upload').length === 1); | ||
// remove item | ||
assert(wrapper.find('.next-upload-list-item-error').length === 1); | ||
assert(wrapper.find('.next-upload-list-item-error-with-text').length === 0); | ||
}); | ||
it('should render a upload item', () => { | ||
const wrapper = mount(<Upload listType="text" defaultValue={[{ | ||
name: 'IMG.png', | ||
state: 'uploading', | ||
percent: 85, | ||
size: 1024, | ||
url: 'https://img.alicdn.com/tps/TB19O79MVXXXXcZXVXXXXXXXXXX-1024-1024.jpg', | ||
errorText: 'error text', | ||
}]} />); | ||
assert(wrapper.find('.next-upload').length === 1); | ||
// remove item | ||
assert(wrapper.find('.next-upload-list-item-upload').length === 1); | ||
}); | ||
it('should render a error item with text', () => { | ||
const wrapper = mount(<Upload listType="text" defaultValue={[{ | ||
name: 'IMG.png', | ||
state: 'error', | ||
size: 1024, | ||
url: 'https://img.alicdn.com/tps/TB19O79MVXXXXcZXVXXXXXXXXXX-1024-1024.jpg', | ||
errorText: 'error text', | ||
}]} />); | ||
assert(wrapper.find('.next-upload').length === 1); | ||
// remove item | ||
assert(wrapper.find('.next-upload-list-item-error').length === 1); | ||
assert(wrapper.find('.next-upload-list-item-error-with-text').length === 1); | ||
}); | ||
}); | ||
|
||
}); |