0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

refactor: fix rebase unit test

This commit is contained in:
Juan Picado @jotadeveloper 2017-10-05 21:48:14 +02:00 committed by juanpicado
parent 34db438bfc
commit 7f4f7380ac
5 changed files with 894 additions and 563 deletions

View file

@ -16,7 +16,7 @@
},
"dependencies": {
"@verdaccio/file-locking": "^0.0.3",
"@verdaccio/local-storage": "0.0.5",
"@verdaccio/local-storage": "0.0.6",
"@verdaccio/streams": "^0.0.2",
"@verdaccio/types": "0.0.4",
"JSONStream": "^1.1.1",

View file

@ -3,13 +3,13 @@
"name": "testpkg-preserve",
"description": "",
"dist-tags": {
"foo": "0.0.0",
"latest": "0.0.0"
"foo": "0.0.1",
"latest": "0.0.1"
},
"versions": {
"0.0.0": {
"0.0.1": {
"name": "testpkg-preserve",
"version": "0.0.0",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
@ -21,10 +21,10 @@
},
"author": "",
"license": "ISC",
"_id": "testpkg-preserve@0.0.0",
"_id": "testpkg-preserve@0.0.1",
"dist": {
"shasum": "8ee7331cbc641581b1a8cecd9d38d744a8feb863",
"tarball": "http:\/\/localhost:1234\/testpkg-preserve\/-\/testpkg-preserve-0.0.0.tgz"
"tarball": "http:\/\/localhost:1234\/testpkg-preserve\/-\/testpkg-preserve-0.0.1.tgz"
},
"_from": ".",
"_npmVersion": "1.3.1",
@ -48,7 +48,7 @@
}
],
"_attachments": {
"testpkg-preserve-0.0.0.tgz": {
"testpkg-preserve-0.0.1.tgz": {
"content_type": "application\/octet-stream",
"data": "H4sIAAAAAAAAA+2TsW7CMBCGM\/spTh6YKHUSIJLXqkPnrixWcIMLsS3btCDEu\/fs0Ba1SFVVVISUP8Odzqf\/zlY+K+qlaOSt7eLo2RudnVmMsel4DBjzasKOY1JZlJDlRVkU5aSspnnG8pIVOZ6fe5FTWvsgHK7yV5\/uLvARr0Q7qkUrKadB+mCXzY2Wr9q2TjZ0SF+k88poPGUj\/LAyl752yoauioVWqJgpPZcb\/Hmw0jV4ynfJEw9lvTAwo\/fOGcdBG4h18FbW6knJ+YzCYAByowLkdD+kTlrjVTBumzy2Nq7XqIDea7eKY7FJrMPCuG6Hlaql9rHr4fGO7i\/9pFcl+4X\/rWhX557xA\/9FVZ3gv+j5\/w9F+jl8g58c0OeQyCdH3HOglETsObxTTw7McwLJClt+wzz5JD45IPEcEHjMEfg0r8M9pQfaOSDs5NLP16tXr15XqzeJD6m5AAwAAA==",
"length": 352

View file

@ -21,12 +21,12 @@ module.exports = function() {
}).status(201);
});
it('add pkg', function() {});
it('add new package', function() {});
describe('should check sha integrity', () => {
const matchTarBallSha = (server) => {
return server.getTarball('testpkg-preserve', 'testpkg-preserve-0.0.0.tgz')
return server.getTarball('testpkg-preserve', 'testpkg-preserve-0.0.1.tgz')
.status(200)
.then(function(body) {
// not real sha due to utf8 conversion
@ -49,9 +49,9 @@ module.exports = function() {
.status(200)
.then(function(body) {
assert.equal(body.name, 'testpkg-preserve');
assert.equal(body.versions['0.0.0'].name, 'testpkg-preserve');
assert.equal(body.versions['0.0.0'].dist.tarball, `http://localhost:${port}/testpkg-preserve/-/testpkg-preserve-0.0.0.tgz`);
assert.deepEqual(body['dist-tags'], {foo: '0.0.0', latest: '0.0.0'});
assert.equal(body.versions['0.0.1'].name, 'testpkg-preserve');
assert.equal(body.versions['0.0.1'].dist.tarball, `http://localhost:${port}/testpkg-preserve/-/testpkg-preserve-0.0.1.tgz`);
assert.deepEqual(body['dist-tags'], {foo: '0.0.1', latest: '0.0.1'});
});
};
@ -74,7 +74,7 @@ module.exports = function() {
'author': '',
'license': 'ISC',
'dist-tags': {
latest: '0.0.0'
latest: '0.0.1'
},
'maintainers': [{
name: 'alex',
@ -85,7 +85,7 @@ module.exports = function() {
modified: '2014-10-02T07:07:51.000Z'
},
'versions': {
"0.0.0": "latest"
"0.0.1": "latest"
},
'repository': {
type: 'git', url: ''}

View file

@ -1,6 +1,6 @@
'use strict';
const uplinkStorage = require('../../src/lib/storage/up-storage');
const uplinkStorage = require('../../src/lib/up-storage');
const assert = require('assert');
function createUplink(config) {

1425
yarn.lock

File diff suppressed because it is too large Load diff