Skip to content

Commit 9d85483

Browse files
GongJSvanoneang
authored andcommitted
Unit testing (#155):自动化测试
* feat: 单元测试 LIcon组件 * feat:自动化测试 * fix:更新travis node版本
1 parent 7da4d68 commit 9d85483

File tree

7 files changed

+1757
-68
lines changed

7 files changed

+1757
-68
lines changed

.travis.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: node_js
2+
node_js:
3+
- "10"
4+
addons:
5+
chrome: stable
6+
sudo: required
7+
before_script:
8+
- "sudo chown root /opt/google/chrome/chrome-sandbox"
9+
- "sudo chmod 4755 /opt/google/chrome/chrome-sandbox"
10+
script: npm run test:unit

jest.config.js

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
module.exports = {
2+
moduleFileExtensions: [
3+
'js',
4+
'jsx',
5+
'json',
6+
'vue'
7+
],
8+
transform: {
9+
'^.+\\.vue$': 'vue-jest',
10+
'.+\\.(css|styl|less|sass|scss|svg|png|jpg|ttf|woff|woff2)$': 'jest-transform-stub',
11+
'^.+\\.jsx?$': 'babel-jest'
12+
},
13+
transformIgnorePatterns: [
14+
'/node_modules/'
15+
],
16+
moduleNameMapper: {
17+
'^@/(.*)$': '<rootDir>/src/$1'
18+
},
19+
snapshotSerializers: [
20+
'jest-serializer-vue'
21+
],
22+
testMatch: [
23+
'**/tests/unit/**/*.test.(js|jsx|ts|tsx)|**/__tests__/*.(js|jsx|ts|tsx)'
24+
],
25+
testURL: 'http://localhost/',
26+
watchPlugins: [
27+
'jest-watch-typeahead/filename',
28+
'jest-watch-typeahead/testname'
29+
]
30+
}

package.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
"serve": "node script/plugin-get-config.js && vue-cli-service serve",
77
"build": "node script/plugin-get-config.js && vue-cli-service build",
88
"lint": "vue-cli-service lint",
9-
"plugin-new": "node script/plugin-new.js",
9+
"commitizen": "commitizen init cz-conventional-changelog --save-dev --save-exact",
1010
"plugin-init": "node script/plugin-init.js",
11+
"plugin-new": "node script/plugin-new.js",
1112
"plugin-reconfig": "node script/plugin-get-config.js",
12-
"commitizen": "commitizen init cz-conventional-changelog --save-dev --save-exact"
13+
"test:unit": "vue-cli-service test:unit"
1314
},
1415
"dependencies": {
1516
"@babel/polyfill": "^7.2.5",
@@ -29,9 +30,13 @@
2930
"devDependencies": {
3031
"@vue/cli-plugin-babel": "^3.4.0",
3132
"@vue/cli-plugin-eslint": "^3.4.0",
33+
"@vue/cli-plugin-unit-jest": "^3.7.0",
3234
"@vue/cli-service": "^3.4.0",
3335
"@vue/eslint-config-airbnb": "^4.0.0",
36+
"@vue/test-utils": "1.0.0-beta.29",
37+
"babel-core": "7.0.0-bridge.0",
3438
"babel-eslint": "^10.0.1",
39+
"babel-jest": "^23.6.0",
3540
"babel-plugin-component": "^1.1.1",
3641
"chalk": "^2.4.2",
3742
"child_process": "^1.0.2",

src/config/index.js

-10
Original file line numberDiff line numberDiff line change
@@ -1,10 +0,0 @@
1-
const Config = {
2-
baseUrl: 'http://dev.koa.7yue.pro/',
3-
stagnateTime: 1 * 60 * 60 * 1000, // 无操作停滞时间 默认1小时
4-
openAutoJumpOut: true, // 是否开启无操作跳出
5-
notLoginRoute: ['login'], // 无需登录即可访问的路由 name,
6-
sideBarLevel: 3, // 侧边栏层级限制, 3表示三级, 可设置 2 和 3
7-
defaultRoute: '/about', // 默认打开的路由
8-
}
9-
10-
export default Config

tests/unit/.eslintrc.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
env: {
3+
jest: true
4+
}
5+
}

tests/unit/LIcon.test.js

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
import { mount } from '@vue/test-utils'
2+
import LIcon from '@/components/base/icon/lin-icon.vue'
3+
4+
describe('LIcon', () => {
5+
let wrapper, vm;
6+
beforeEach(() => {
7+
wrapper = mount(LIcon);
8+
vm = wrapper.vm
9+
});
10+
it('Icon.vue', () => {
11+
mount(LIcon)
12+
expect(LIcon).toBe.ok
13+
})
14+
it('可以设置 name', () => {
15+
wrapper.setProps({ name: 'loading' })
16+
const elements = vm.$el.querySelectorAll('use')
17+
expect(elements.length).toBe(1)
18+
expect(elements[0].getAttribute('xlink:href')).toBe('#icon-loading')
19+
})
20+
it('可以设置 color', () => {
21+
wrapper.setProps({ color: '#ccc' })
22+
const elements = vm.$el.querySelectorAll('use')
23+
expect(elements.length).toBe(1)
24+
expect(elements[0].getAttribute('fill')).toBe('#ccc')
25+
})
26+
it('可以设置 width', () => {
27+
wrapper.setProps({ width: '30px' })
28+
expect(wrapper.find('svg').element.style.width).toBe('30px')
29+
})
30+
it('可以设置 height', () => {
31+
wrapper.setProps({ height: '30px' })
32+
expect(wrapper.find('svg').element.style.height).toBe('30px')
33+
})
34+
it('综合测试', () => {
35+
wrapper.setProps({ name: 'loading',color: '#ccc', width: '30px', height: '30px' })
36+
const elements = vm.$el.querySelectorAll('use')
37+
expect(elements.length).toBe(1)
38+
expect(elements[0].getAttribute('xlink:href')).toBe('#icon-loading')
39+
expect(elements[0].getAttribute('fill')).toBe('#ccc')
40+
expect(wrapper.find('svg').element.style.height).toBe('30px')
41+
expect(wrapper.find('svg').element.style.width).toBe('30px')
42+
vm.$destroy()
43+
})
44+
})

0 commit comments

Comments
 (0)