updates/test.js
2019-12-19 01:19:05 +08:00

320 lines
8.3 KiB
JavaScript

"use strict";
const assert = require("assert");
const process = require("process");
const execa = require("execa");
const createTestServer = require("create-test-server");
const tempy = require("tempy");
const fs = require("fs");
const path = require("path");
const del = require("del");
const testDir = tempy.directory();
let server;
async function clean() {
await del(testDir, {force: true});
if (server) {
await server.close();
}
}
async function setup() {
server = await createTestServer();
// Server response
for (const packageName of [
"gulp-sourcemaps",
"prismjs",
"svgstore",
"html-webpack-plugin",
"noty",
"jpeg-buffer-orientation",
"styled-components",
"@babel/preset-env",
]) {
const name = packageName.replace(/\//g, "%2f");
const text = fs.readFileSync(path.join(__dirname, "info", `${name}.json`), "utf8");
server.get(
`/${name}`,
text
);
}
const {sslUrl: registry} = server;
// Fake registry
fs.writeFileSync(path.join(testDir, ".npmrc"), `registry=${registry}`);
// Copy fixture
fs.writeFileSync(
path.join(testDir, "test.json"),
fs.readFileSync("test.json")
);
}
async function exit(err) {
await clean();
if (err) {
console.info(err);
}
process.exit(err ? 1 : 0);
}
async function run(args) {
const {stdout} = await execa(
path.join(process.cwd(), "./updates.js"),
args.split(/\s+/),
{
cwd: testDir
}
);
return JSON.parse(stdout);
}
async function main() {
await setup();
assert.deepStrictEqual(await run("-j -f test.json"), {
results: {
dependencies: {
"gulp-sourcemaps": {
old: "2.0.0",
new: "2.6.5",
info: "https://github.com/gulp-sourcemaps/gulp-sourcemaps",
},
"prismjs": {
old: "1.0.0",
new: "1.17.1",
info: "https://github.com/LeaVerou/prism",
},
"svgstore": {
old: "^3.0.0",
new: "^3.0.0-2",
info: "https://github.com/svgstore/svgstore",
},
"html-webpack-plugin": {
old: "4.0.0-alpha.2",
new: "4.0.0-beta.11",
info: "https://github.com/jantimon/html-webpack-plugin",
},
"noty": {
old: "3.1.0",
new: "3.2.0-beta",
info: "https://github.com/needim/noty",
},
"jpeg-buffer-orientation": {
old: "0.0.0",
new: "2.0.3",
info: "https://github.com/fisker/jpeg-buffer-orientation",
},
"styled-components": {
old: "2.5.0-1",
new: "5.0.0-rc.2",
info: "https://github.com/styled-components/styled-components",
},
"@babel/preset-env": {
old: "7.0.0",
new: "7.7.6",
info: "https://github.com/babel/babel/tree/master/packages/babel-preset-env",
}
},
peerDependencies: {
"@babel/preset-env": {
"old": "~6.0.0",
"new": "~7.7.6",
"info": "https://github.com/babel/babel/tree/master/packages/babel-preset-env"
}
},
}
});
assert.deepStrictEqual(await run("-j -g -f test.json"), {
results: {
dependencies: {
"gulp-sourcemaps": {
old: "2.0.0",
new: "2.6.5",
info: "https://github.com/gulp-sourcemaps/gulp-sourcemaps",
},
"prismjs": {
old: "1.0.0",
new: "1.17.1",
info: "https://github.com/LeaVerou/prism",
},
"html-webpack-plugin": {
old: "4.0.0-alpha.2",
new: "4.0.0-beta.11",
info: "https://github.com/jantimon/html-webpack-plugin",
},
"noty": {
old: "3.1.0",
new: "3.1.4",
info: "https://github.com/needim/noty",
},
"jpeg-buffer-orientation": {
old: "0.0.0",
new: "2.0.3",
info: "https://github.com/fisker/jpeg-buffer-orientation",
},
"styled-components": {
old: "2.5.0-1",
new: "5.0.0-rc.2",
info: "https://github.com/styled-components/styled-components",
},
"@babel/preset-env": {
old: "7.0.0",
new: "7.7.6",
info: "https://github.com/babel/babel/tree/master/packages/babel-preset-env",
}
},
peerDependencies: {
"@babel/preset-env": {
"old": "~6.0.0",
"new": "~7.7.6",
"info": "https://github.com/babel/babel/tree/master/packages/babel-preset-env"
}
}
}
});
assert.deepStrictEqual(await run("-j -g -p -f test.json"), {
results: {
dependencies: {
"gulp-sourcemaps": {
old: "2.0.0",
new: "2.6.5",
info: "https://github.com/gulp-sourcemaps/gulp-sourcemaps",
},
"prismjs": {
old: "1.0.0",
new: "1.17.1",
info: "https://github.com/LeaVerou/prism",
},
"svgstore": {
old: "^3.0.0",
new: "^3.0.0-2",
info: "https://github.com/svgstore/svgstore",
},
"html-webpack-plugin": {
old: "4.0.0-alpha.2",
new: "4.0.0-beta.11",
info: "https://github.com/jantimon/html-webpack-plugin",
},
"noty": {
old: "3.1.0",
new: "3.2.0-beta",
info: "https://github.com/needim/noty",
},
"jpeg-buffer-orientation": {
old: "0.0.0",
new: "2.0.3",
info: "https://github.com/fisker/jpeg-buffer-orientation",
},
"styled-components": {
old: "2.5.0-1",
new: "5.0.0-rc.2",
info: "https://github.com/styled-components/styled-components",
},
"@babel/preset-env": {
old: "7.0.0",
new: "7.7.6",
info: "https://github.com/babel/babel/tree/master/packages/babel-preset-env",
}
},
peerDependencies: {
"@babel/preset-env": {
"old": "~6.0.0",
"new": "~7.7.6",
"info": "https://github.com/babel/babel/tree/master/packages/babel-preset-env"
}
},
}
});
assert.deepStrictEqual(await run("-j -R -f test.json"), {
results: {
dependencies: {
"gulp-sourcemaps": {
old: "2.0.0",
new: "2.6.5",
info: "https://github.com/gulp-sourcemaps/gulp-sourcemaps",
},
"prismjs": {
old: "1.0.0",
new: "1.17.1",
info: "https://github.com/LeaVerou/prism",
},
"svgstore": {
old: "^3.0.0",
new: "^2.0.3",
info: "https://github.com/svgstore/svgstore",
},
"html-webpack-plugin": {
old: "4.0.0-alpha.2",
new: "3.2.0",
info: "https://github.com/jantimon/html-webpack-plugin",
},
"noty": {
old: "3.1.0",
new: "3.1.4",
info: "https://github.com/needim/noty",
},
"jpeg-buffer-orientation": {
old: "0.0.0",
new: "2.0.3",
info: "https://github.com/fisker/jpeg-buffer-orientation",
},
"styled-components": {
old: "2.5.0-1",
new: "4.4.1",
info: "https://github.com/styled-components/styled-components",
},
"@babel/preset-env": {
old: "7.0.0",
new: "7.7.6",
info: "https://github.com/babel/babel/tree/master/packages/babel-preset-env",
}
},
peerDependencies: {
"@babel/preset-env": {
"old": "~6.0.0",
"new": "~7.7.6",
"info": "https://github.com/babel/babel/tree/master/packages/babel-preset-env"
}
},
}
});
assert.deepStrictEqual(await run("-j -P -f test.json"), {
results: {
dependencies: {
"gulp-sourcemaps": {
old: "2.0.0",
new: "2.0.1",
info: "https://github.com/floridoo/gulp-sourcemaps",
},
"svgstore": {
old: "^3.0.0",
new: "^3.0.0-2",
info: "https://github.com/svgstore/svgstore",
},
"html-webpack-plugin": {
old: "4.0.0-alpha.2",
new: "4.0.0-beta.11",
info: "https://github.com/jantimon/html-webpack-plugin",
},
"noty": {
old: "3.1.0",
new: "3.1.4",
info: "https://github.com/needim/noty",
},
},
}
});
}
main().then(exit).catch(exit);