1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/test/functional/gh29.js
2017-06-28 22:56:02 +02:00

67 lines
2.0 KiB
JavaScript

'use strict';
const assert = require('assert');
const crypto = require('crypto');
function readfile(x) {
return require('fs').readFileSync(__dirname + '/' + x);
}
module.exports = function() {
let server = process.server;
let server2 = process.server2;
it('downloading non-existent tarball #1 / srv2', function() {
return server2.getTarball('testpkg-gh29', 'blahblah')
.status(404)
.body_error(/no such package/);
});
describe('pkg-gh29', function() {
before(function() {
return server.putPackage('testpkg-gh29', require('./lib/package')('testpkg-gh29'))
.status(201)
.body_ok(/created new package/);
});
it('creating new package / srv1', function() {});
it('downloading non-existent tarball #2 / srv2', function() {
return server2.getTarball('testpkg-gh29', 'blahblah')
.status(404)
.body_error(/no such file/);
});
describe('tarball', function() {
before(function() {
return server.putTarball('testpkg-gh29', 'blahblah', readfile('fixtures/binary'))
.status(201)
.body_ok(/.*/);
});
it('uploading new tarball / srv1', function() {});
describe('pkg version', function() {
before(function() {
let pkg = require('./lib/package')('testpkg-gh29');
pkg.dist.shasum = crypto.createHash('sha1').update(readfile('fixtures/binary')).digest('hex');
return server.putVersion('testpkg-gh29', '0.0.1', pkg)
.status(201)
.body_ok(/published/);
});
it('uploading new package version / srv1', function() {});
it('downloading newly created tarball / srv2', function() {
return server2.getTarball('testpkg-gh29', 'blahblah')
.status(200)
.then(function(body) {
assert.deepEqual(body, readfile('fixtures/binary'));
});
});
});
});
});
};