2014-01-09 16:30:36 +01:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
from __future__ import absolute_import
|
2014-01-26 21:28:37 +01:00
|
|
|
from .testcases import DockerClientTestCase
|
2014-01-20 17:50:41 +01:00
|
|
|
from mock import patch
|
|
|
|
from six import StringIO
|
2014-01-09 16:30:36 +01:00
|
|
|
from fig.cli.main import TopLevelCommand
|
|
|
|
|
2014-01-26 21:28:37 +01:00
|
|
|
class CLITestCase(DockerClientTestCase):
|
2014-01-09 16:30:36 +01:00
|
|
|
def setUp(self):
|
2014-01-26 21:28:37 +01:00
|
|
|
super(CLITestCase, self).setUp()
|
2014-01-09 16:30:36 +01:00
|
|
|
self.command = TopLevelCommand()
|
|
|
|
self.command.base_dir = 'tests/fixtures/simple-figfile'
|
|
|
|
|
2014-01-20 17:47:58 +01:00
|
|
|
def tearDown(self):
|
|
|
|
self.command.project.kill()
|
|
|
|
self.command.project.remove_stopped()
|
|
|
|
|
2014-01-28 01:43:23 +01:00
|
|
|
def test_yaml_filename_check(self):
|
|
|
|
self.command.base_dir = 'tests/fixtures/longer-filename-figfile'
|
|
|
|
|
|
|
|
project = self.command.project
|
|
|
|
|
|
|
|
self.assertTrue( project.get_service('definedinyamlnotyml'), "Service: definedinyamlnotyml should have been loaded from .yaml file" )
|
|
|
|
|
2014-01-09 16:30:36 +01:00
|
|
|
def test_help(self):
|
|
|
|
self.assertRaises(SystemExit, lambda: self.command.dispatch(['-h'], None))
|
2014-01-09 16:31:37 +01:00
|
|
|
|
2014-01-20 17:50:41 +01:00
|
|
|
@patch('sys.stdout', new_callable=StringIO)
|
|
|
|
def test_ps(self, mock_stdout):
|
|
|
|
self.command.project.get_service('simple').create_container()
|
2014-01-09 16:31:37 +01:00
|
|
|
self.command.dispatch(['ps'], None)
|
2014-01-20 17:50:41 +01:00
|
|
|
self.assertIn('fig_simple_1', mock_stdout.getvalue())
|
2014-01-16 18:58:53 +01:00
|
|
|
|
|
|
|
def test_scale(self):
|
|
|
|
project = self.command.project
|
|
|
|
|
|
|
|
self.command.scale({'SERVICE=NUM': ['simple=1']})
|
|
|
|
self.assertEqual(len(project.get_service('simple').containers()), 1)
|
|
|
|
|
|
|
|
self.command.scale({'SERVICE=NUM': ['simple=3', 'another=2']})
|
|
|
|
self.assertEqual(len(project.get_service('simple').containers()), 3)
|
|
|
|
self.assertEqual(len(project.get_service('another').containers()), 2)
|
|
|
|
|
|
|
|
self.command.scale({'SERVICE=NUM': ['simple=1', 'another=1']})
|
|
|
|
self.assertEqual(len(project.get_service('simple').containers()), 1)
|
|
|
|
self.assertEqual(len(project.get_service('another').containers()), 1)
|
|
|
|
|
|
|
|
self.command.scale({'SERVICE=NUM': ['simple=1', 'another=1']})
|
|
|
|
self.assertEqual(len(project.get_service('simple').containers()), 1)
|
|
|
|
self.assertEqual(len(project.get_service('another').containers()), 1)
|
|
|
|
|
|
|
|
self.command.scale({'SERVICE=NUM': ['simple=0', 'another=0']})
|
|
|
|
self.assertEqual(len(project.get_service('simple').containers()), 0)
|
|
|
|
self.assertEqual(len(project.get_service('another').containers()), 0)
|
|
|
|
|