Пример #1
0
 def test_get_container_name(self):
     assert get_container_name({}) is None
     assert get_container_name({'Name': 'myproject_db_1'}) == 'myproject_db_1'
     assert get_container_name(
         {'Names': ['/myproject_db_1', '/myproject_web_1/db']}
     ) == 'myproject_db_1'
     assert get_container_name({
         'Names': [
             '/swarm-host-1/myproject_db_1',
             '/swarm-host-1/myproject_web_1/db'
         ]
     }) == 'myproject_db_1'
Пример #2
0
 def test_get_container_name(self):
     assert get_container_name({}) is None
     assert get_container_name({'Name': 'myproject_db_1'}) == 'myproject_db_1'
     assert get_container_name(
         {'Names': ['/myproject_db_1', '/myproject_web_1/db']}
     ) == 'myproject_db_1'
     assert get_container_name({
         'Names': [
             '/swarm-host-1/myproject_db_1',
             '/swarm-host-1/myproject_web_1/db'
         ]
     }) == 'myproject_db_1'
Пример #3
0
 def test_get_container_name(self):
     self.assertIsNone(get_container_name({}))
     self.assertEqual(get_container_name({'Name': 'myproject_db_1'}), 'myproject_db_1')
     self.assertEqual(get_container_name({'Names': ['/myproject_db_1', '/myproject_web_1/db']}), 'myproject_db_1')
     self.assertEqual(
         get_container_name({
             'Names': [
                 '/swarm-host-1/myproject_db_1',
                 '/swarm-host-1/myproject_web_1/db'
             ]
         }),
         'myproject_db_1'
     )
Пример #4
0
 def test_get_container_name(self):
     self.assertIsNone(get_container_name({}))
     self.assertEqual(get_container_name({'Name': 'myproject_db_1'}), 'myproject_db_1')
     self.assertEqual(get_container_name({'Names': ['/myproject_db_1', '/myproject_web_1/db']}), 'myproject_db_1')
     self.assertEqual(
         get_container_name({
             'Names': [
                 '/swarm-host-1/myproject_db_1',
                 '/swarm-host-1/myproject_web_1/db'
             ]
         }),
         'myproject_db_1'
     )