Skip to content

Commit 8bdb458

Browse files
add basic integration tests
1 parent c9a4567 commit 8bdb458

8 files changed

+3131
-113
lines changed

.eslintrc

+2-24
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,5 @@
11
{
2-
"parser": "babel-eslint",
32
"extends": [
4-
"standard",
5-
"standard-react"
6-
],
7-
"env": {
8-
"es6": true
9-
},
10-
"plugins": [
11-
"react"
12-
],
13-
"parserOptions": {
14-
"sourceType": "module",
15-
"allowImportExportEverywhere": true
16-
},
17-
"rules": {
18-
// don't force es6 functions to include space before paren
19-
"space-before-function-paren": 0,
20-
21-
// allow specifying true explicitly for boolean props
22-
"react/jsx-boolean-value": 0,
23-
24-
// allow imports mixed with non-import statements at top of file
25-
"import/first": 0
26-
}
3+
"standard"
4+
]
275
}

.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,7 @@ dist
1818
npm-debug.log*
1919
yarn-debug.log*
2020
yarn-error.log*
21+
22+
# temp directories created during testing
23+
my-test-library
24+
nala

.travis.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: node_js
2+
node_js:
3+
- 9
4+
- 8
5+
- 6
6+
- 4
7+
cache:
8+
yarn: true
9+
directories:
10+
- node_modules

lib/create-library.js

+13-3
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,15 @@ const pkg = require('../package')
1313

1414
module.exports = async (info) => {
1515
const {
16-
dest,
17-
manager
16+
manager,
17+
name
1818
} = info
1919

20+
// handle scoped package names
21+
const parts = name.split('/')
22+
info.shortName = parts[parts.length - 1]
23+
24+
const dest = path.join(process.cwd(), info.shortName)
2025
await mkdirp(dest)
2126

2227
const source = path.join(__dirname, '../template')
@@ -48,6 +53,8 @@ module.exports = async (info) => {
4853
ora.promise(promise, 'Initializing git repo')
4954
await promise
5055
}
56+
57+
return dest
5158
}
5259

5360
module.exports.copyTemplateFile = async (opts) => {
@@ -62,7 +69,10 @@ module.exports.copyTemplateFile = async (opts) => {
6269
const destFilePath = path.join(dest, fileRelativePath)
6370
const destFileDir = path.parse(destFilePath).dir
6471

65-
const content = await consolidate.handlebars(file, info)
72+
const content = await consolidate.handlebars(file, {
73+
...info,
74+
yarn: (info.manager === 'yarn')
75+
})
6676

6777
await mkdirp(destFileDir)
6878
fs.writeFileSync(destFilePath, content, 'utf8')

lib/create-library.test.js

+57
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
'use strict'
2+
3+
const { test } = require('ava')
4+
const execa = require('execa')
5+
const rmfr = require('rmfr')
6+
7+
const createLibrary = require('./create-library')
8+
9+
const tests = [
10+
{
11+
name: 'my-test-library',
12+
author: 'nala',
13+
description: 'this is a auto-generated test module. please ignore.',
14+
repo: 'nala/my-test-library',
15+
license: 'MIT',
16+
manager: 'yarn'
17+
},
18+
{
19+
name: 'my-test-library',
20+
author: 'nala',
21+
description: 'this is a auto-generated test module. please ignore.',
22+
repo: 'nala/my-test-library',
23+
license: 'MIT',
24+
manager: 'npm'
25+
},
26+
{
27+
name: '@automagical/nala',
28+
author: 'superstar-cats',
29+
description: 'this is a auto-generated test module. please ignore.',
30+
repo: 'superstar-cats/nala',
31+
license: 'GPL',
32+
manager: 'yarn'
33+
}
34+
]
35+
36+
tests.forEach((info) => {
37+
test.serial(`creating "${info.name}" using ${info.manager}`, async (t) => {
38+
console.log(`creating "${info.name}" using ${info.manager}...`)
39+
// ensure library is created successfully
40+
const root = await createLibrary(info)
41+
t.truthy(root.indexOf(info.shortName) >= 0)
42+
43+
// ensure yarn runs successfully
44+
let ret = await execa.shell('yarn', { cwd: root })
45+
t.is(ret.code, 0)
46+
47+
// ensure jest tests pass
48+
ret = await execa.shell('yarn test', { cwd: root })
49+
t.is(ret.code, 0)
50+
51+
// ensure git is initialized properly
52+
ret = await execa.shell('git status', { cwd: root })
53+
t.is(ret.code, 0)
54+
55+
await rmfr(root)
56+
})
57+
})

lib/prompt-library-info.js

-8
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
const inquirer = require('inquirer')
44
const isValidNpmName = require('is-valid-npm-name')
5-
const path = require('path')
65

76
module.exports = async (defaults) => {
87
const info = await inquirer.prompt([
@@ -47,12 +46,5 @@ module.exports = async (defaults) => {
4746
}
4847
])
4948

50-
// handle scoped package names
51-
const parts = info.name.split('/')
52-
info.shortName = parts[parts.length - 1]
53-
54-
info.yarn = (info.manager === 'yarn')
55-
info.dest = path.join(process.cwd(), info.shortName)
56-
5749
return info
5850
}

package.json

+8
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
"bin": {
1010
"create-react-library": "index.js"
1111
},
12+
"scripts": {
13+
"test": "ava -v && standard *.js lib/*.js"
14+
},
1215
"keywords": [
1316
"react",
1417
"preact",
@@ -37,5 +40,10 @@
3740
"p-each-series": "^1.0.0",
3841
"parse-git-config": "^2.0.0",
3942
"which": "^1.3.0"
43+
},
44+
"devDependencies": {
45+
"ava": "^0.25.0",
46+
"rmfr": "^2.0.0",
47+
"standard": "^11.0.0"
4048
}
4149
}

0 commit comments

Comments
 (0)