mirror of
https://github.com/zhigang1992/deployd.git
synced 2026-05-15 17:47:51 +08:00
170 lines
5.1 KiB
JavaScript
170 lines
5.1 KiB
JavaScript
var Deployment = require('../lib/client/deploy').Deployment
|
|
, sh = require('shelljs')
|
|
, http = require('http')
|
|
, fs = require('fs');
|
|
|
|
try {
|
|
fs.unlink(__dirname + '/../test-app/.dpd/deployments.json');
|
|
} catch(e) {}
|
|
|
|
after(function () {
|
|
try {
|
|
fs.unlink(__dirname + '/../test-app/.dpd/deployments.json');
|
|
} catch(e) {}
|
|
});
|
|
|
|
describe('Deployment', function(){
|
|
it('should sanitize the name', function() {
|
|
var d = new Deployment(__dirname + '/../test-app', 'ritch');
|
|
|
|
expect(d.name).to.equal('test-app');
|
|
expect(d.user).to.equal('ritch');
|
|
});
|
|
|
|
it('should determine name if one isnt provided', function() {
|
|
var d = new Deployment(__dirname + '/../test-app');
|
|
d.setConfig('test-app.deploydapp.com', {subdomain: 'abcdefg'});
|
|
// recreate
|
|
d = new Deployment(__dirname + '/../test-app');
|
|
expect(d.subdomain).to.equal('abcdefg');
|
|
});
|
|
|
|
it('should allow a custom subdomain', function() {
|
|
var d = new Deployment(__dirname + '/../test-app', 'ritch', 'custom-subdomain');
|
|
|
|
expect(d.name).to.equal('custom-subdomain');
|
|
expect(d.user).to.equal('ritch');
|
|
expect(d.subdomain).to.equal(d.name);
|
|
});
|
|
|
|
function shouldSanitizeAs(input, output) {
|
|
expect(Deployment.prototype.sanitize(input)).to.equal(output);
|
|
}
|
|
|
|
it('should sanitize all the following names', function() {
|
|
shouldSanitizeAs(' a b c ', 'a-b-c');
|
|
shouldSanitizeAs('a b', 'a-b');
|
|
shouldSanitizeAs('a.b.c', 'a-b-c');
|
|
});
|
|
|
|
function shouldError(input) {
|
|
try {
|
|
Deployment.prototype.sanitize(input);
|
|
} catch(e) {
|
|
return;
|
|
}
|
|
|
|
throw new Error('should have errored for input: ' + input);
|
|
}
|
|
|
|
it('should error for the following names', function() {
|
|
shouldError('???');
|
|
shouldError('');
|
|
shouldError('-');
|
|
shouldError('');
|
|
shouldError('/');
|
|
shouldError('aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa');
|
|
});
|
|
|
|
describe('.package()', function () {
|
|
it('should create a package of the given app', function(done) {
|
|
var d = new Deployment(__dirname + '/../test-app', 'ritch')
|
|
, tarball = d.path + '/.dpd/package.tgz';
|
|
|
|
d.package(tarball, function (err) {
|
|
done(err);
|
|
sh.rm(tarball);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe('.setConfig()', function(){
|
|
it('should persist a config value in JSON', function() {
|
|
var d = new Deployment(__dirname + '/../test-app', 'ritch', 'custom-name');
|
|
|
|
d.setConfig('foo', 'bar');
|
|
|
|
var json = require(__dirname + '/../test-app/.dpd/deployments.json');
|
|
expect(json).to.exist;
|
|
expect(json.foo).to.equal('bar');
|
|
});
|
|
});
|
|
|
|
describe('.getConfig()', function(){
|
|
it('should return a persisted config value', function() {
|
|
var d = new Deployment(__dirname + '/../test-app', 'ritch', 'custom-name');
|
|
|
|
d.setConfig('foo', 'bar');
|
|
var val = d.getConfig('foo');
|
|
expect(val).to.equal('bar');
|
|
});
|
|
});
|
|
|
|
describe('.publish()', function() {
|
|
it('should make an http request to POSTing a tar, username, key, and subdomain', function(done) {
|
|
var d = new Deployment(__dirname + '/../test-app', 'ritch')
|
|
, tar = __dirname + '/../test-app/.dpd/package.tgz'
|
|
, port = 7007
|
|
, requested = false
|
|
, url = 'http://localhost:' + port + '/'
|
|
, key = Math.random().toString()
|
|
, size = 0;
|
|
|
|
|
|
http.createServer(function (req, res) {
|
|
req
|
|
.on('data', function (data) {
|
|
size += data.length;
|
|
})
|
|
.on('end', function () {
|
|
res.end();
|
|
});
|
|
expect(req.method).to.equal('POST');
|
|
expect(req.headers['x-remote-key']).to.equal(key);
|
|
expect(req.headers['x-app-user']).to.equal(d.user);
|
|
expect('http://' + req.headers.host + req.url).to.equal(url);
|
|
requested = true;
|
|
})
|
|
.listen(port)
|
|
.on('listening', function () {
|
|
d.package(tar, function (err) {
|
|
d.publish(url, tar, key, function (err) {
|
|
if(err) console.log(err);
|
|
expect(size).to.equal(fs.statSync(tar).size);
|
|
if(!requested) throw new Error('failed to make a request to the server');
|
|
done();
|
|
sh.rm(tar);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
|
|
it('should error gracefully', function(done) {
|
|
var d = new Deployment(__dirname + '/../test-app', 'test-app', 'ritch')
|
|
, tar = __dirname + '/../test-app/.dpd/package.tgz'
|
|
, port = 7008
|
|
, requested = false
|
|
, url = 'http://localhost:' + port + '/'
|
|
, key = Math.random().toString()
|
|
, errMessage = 'an error occured';
|
|
|
|
|
|
http.createServer(function (req, res) {
|
|
res.statusCode = 500;
|
|
res.end(errMessage);
|
|
requested = true;
|
|
})
|
|
.listen(port)
|
|
.on('listening', function () {
|
|
d.package(tar, function (err) {
|
|
d.publish(url, tar, key, function (err) {
|
|
expect(err.message).to.equal(errMessage);
|
|
if(!requested) throw new Error('failed to make a request to the server');
|
|
done();
|
|
sh.rm(tar);
|
|
});
|
|
});
|
|
});
|
|
});
|
|
});
|
|
}); |