-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #168 from PascalPrecht/feat/test-setup
refactor: move init command functions into lib and introduce tests
- Loading branch information
Showing
6 changed files
with
85 additions
and
29 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 |
---|---|---|
|
@@ -92,6 +92,9 @@ | |
"ava": { | ||
"require": [ | ||
"@babel/register" | ||
], | ||
"files": [ | ||
"test/**/*.js" | ||
] | ||
}, | ||
"aragon": { | ||
|
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
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,11 @@ | ||
import path from 'path'; | ||
import fs from 'fs-extra'; | ||
|
||
export async function checkProjectExists(basename) { | ||
const projectPath = path.resolve(process.cwd(), basename) | ||
const exists = await fs.pathExists(projectPath) | ||
|
||
if (exists) { | ||
throw new Error(`Couldn't initialize project. Project with name ${basename} already exists in ${projectPath}. Use different <name> or rename existing project folder.`) | ||
} | ||
} |
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,2 @@ | ||
export * from './check-project-exists'; | ||
export * from './prepare-template'; |
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,16 @@ | ||
import path from 'path'; | ||
import fs from 'fs-extra'; | ||
|
||
export async function prepareTemplate(basename, appName) { | ||
const arappPath = path.resolve(basename, 'arapp.json') | ||
const arapp = await fs.readJson(arappPath) | ||
|
||
arapp.appName = appName | ||
|
||
const gitFolderPath = path.resolve(basename, '.git') | ||
|
||
return Promise.all([ | ||
fs.writeJson(arappPath, arapp, { spaces: 2 }), | ||
fs.remove(gitFolderPath) | ||
]) | ||
} |
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,43 @@ | ||
import test from 'ava'; | ||
import fs from 'fs-extra'; | ||
|
||
import { checkProjectExists, prepareTemplate } from '../../src/lib/init'; | ||
|
||
const projectPath = './.tmp/aragon-app' | ||
|
||
test.beforeEach(t => { | ||
fs.ensureDirSync(projectPath) | ||
}) | ||
|
||
test.afterEach(t => { | ||
fs.removeSync(projectPath) | ||
}) | ||
|
||
test('check if project folder already exists', async t => { | ||
try { | ||
await checkProjectExists(projectPath) | ||
t.fail() | ||
} catch (err) { | ||
t.pass() | ||
} | ||
}) | ||
|
||
test('prepare project template', async t => { | ||
|
||
const repoPath = `${projectPath}/.git` | ||
const arappPath = `${projectPath}/arapp.json` | ||
const appName = 'TestApp' | ||
|
||
await fs.ensureDir(repoPath) | ||
await fs.ensureFile(arappPath) | ||
await fs.writeJson(arappPath, { | ||
appName: 'boilerplate-placeholder' | ||
}) | ||
|
||
await prepareTemplate(projectPath, appName) | ||
const project = await fs.readJson(arappPath) | ||
|
||
t.falsy(await fs.pathExists(repoPath)) | ||
t.is(appName, project.appName) | ||
}) | ||
|