Created
February 3, 2015 02:12
-
-
Save foliea/31d5ede26f9bf24b378f to your computer and use it in GitHub Desktop.
old specs
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 tests seems to be redundant with docker module tests | |
/* context('when called with wrong docker endpoint', function() {*/ | |
//beforeEach(function() { | |
//var invalidEndpoint = endpointHTTP.replace('http', 'ftp'); | |
//cli.argv(['node', 'server', '-e', invalidEndpoint], fakeExit); | |
//}); | |
//expectToLogError(fakeDocker.ErrorInvalidEndpoint); | |
//expectProgramToFail(); | |
//}); | |
//context('when called with invalid docker repository', function() { | |
//beforeEach(function() { | |
//cli.argv(['node', 'server', '-e', endpointHTTP, | |
//'--repository=/'], fakeExit); | |
//}); | |
//expectToLogError(fakeDocker.ErrorInvalidRepository); | |
//expectProgramToFail(); | |
//}); | |
//context('when called with https docker api', function() { | |
//var endpointHTTPS = endpointHTTP.replace('http', 'https'); | |
//context('with wrong certs path', function() { | |
//beforeEach(function() { | |
//cli.argv(['node', 'server', '-e', endpointHTTPS, | |
//'--certs=azerty'], fakeExit); | |
//}); | |
//expectToLogError(fakeDocker.ErrorInvalidCertsPath); | |
//expectProgramToFail(); | |
//}); | |
//context('without ssl certificates', function() { | |
//beforeEach(function() { | |
//cli.argv(['node', 'server', '-e', endpointHTTPS, | |
//'--certs=./test'], fakeExit); | |
//}); | |
//expectToLogError(fakeDocker.ErrorMissingKeyCertificate); | |
//expectProgramToFail(); | |
//}); | |
//}); | |
//context('when docker API is not responding', function() { | |
//beforeEach(function() { | |
//fakeDocker.__set__('getClient', getFailureClient); | |
//cli.argv(['node', 'server', '-e', endpointHTTP], fakeExit); | |
//}); | |
//expectToLogError(fakeDocker.ErrorAPINotResponding); | |
//expectProgramToFail(); | |
/*});*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment