Exemple #1
0
 def test_start_error(self):
     self.client.cluster.status = mock.Mock(side_effect=[
         ClusterState({'initialized': False}),
         ClusterState({'error': 'some error happened'}),
     ])
     self.client.cluster.start = mock.Mock()
     self.invoke('cfy cluster start --cluster-host-ip 1.2.3.4',
                 'some error happened')
Exemple #2
0
 def test_start_success(self):
     self.client.cluster.status = mock.Mock(side_effect=[
         ClusterState({'initialized': False}),
         ClusterState({'initialized': True}),
     ])
     self.client.cluster.start = mock.Mock()
     outcome = self.invoke('cfy cluster start --cluster-host-ip 1.2.3.4')
     self.assertIn('cluster started', outcome.logs)
Exemple #3
0
 def test_profile_updated(self):
     self.client.cluster.status = mock.Mock(side_effect=[
         ClusterState({'initialized': False}),
         ClusterState({'initialized': True}),
     ])
     self.client.cluster.start = mock.Mock()
     outcome = self.invoke('cfy cluster start --cluster-host-ip 1.2.3.4')
     self.assertIn('cluster started', outcome.logs)
     self.assertEqual(1, len(env.profile.cluster))
     self.assertEqual(env.profile.manager_ip,
                      env.profile.cluster[0]['manager_ip'])
Exemple #4
0
    def test_passes_log_cursor(self):
        # prepare mock status responses containing logs. The first status
        # contains logs that end at cursor=1, so the next call needs to provide
        # since='1'. The 2nd status has cursor=2 and 3, so the next call needs
        # to be since='3'. The next call returns no logs at all, so since stays
        # '3'.
        status_responses = [
            ClusterState({
                'initialized':
                False,
                'logs': [{
                    'timestamp': 1,
                    'message': 'a',
                    'cursor': '1'
                }]
            }),
            ClusterState({
                'initialized':
                False,
                'logs': [{
                    'timestamp': 1,
                    'message': 'a',
                    'cursor': '2'
                }, {
                    'timestamp': 1,
                    'message': 'a',
                    'cursor': '3'
                }]
            }),
            ClusterState({'initialized': False}),
            ClusterState({
                'initialized':
                True,
                'logs': [{
                    'timestamp': 1,
                    'message': 'a',
                    'cursor': '4'
                }]
            })
        ]
        client = mock.Mock()
        client.cluster.status = mock.Mock(side_effect=status_responses)

        with mock.patch('cloudify_cli.commands.cluster.time') as mock_time:
            mock_time.time.return_value = 1000
            _wait_for_cluster_initialized(client, logger=mock.Mock())
        self.assertEqual(4, len(client.cluster.status.mock_calls))

        since_passed = [
            kw['since'] for _, _, kw in client.cluster.status.mock_calls
        ]

        self.assertEqual([None, '1', '3', '3'], since_passed)
Exemple #5
0
    def test_nodes_added_to_profile(self):
        self.client.cluster.status = mock.Mock(
            return_value=ClusterState({'initialized': True}))
        self.client.cluster.nodes.list = mock.Mock(return_value=[
            ClusterNode({
                'name': 'node name 1',
                'host_ip': '1.2.3.4'
            }),
            ClusterNode({
                'name': 'node name 2',
                'host_ip': '5.6.7.8'
            })
        ])
        self.client.cluster.join = mock.Mock()

        outcome = self.invoke('cfy cluster update-profile')
        self.assertIn('Adding cluster node: 1.2.3.4', outcome.logs)
        self.assertIn('Adding cluster node: 5.6.7.8', outcome.logs)

        self.assertEqual(env.profile.cluster,
                         [{
                             'manager_ip': env.profile.manager_ip
                         }, {
                             'manager_ip': '1.2.3.4'
                         }, {
                             'manager_ip': '5.6.7.8'
                         }])
Exemple #6
0
    def test_polls_until_done(self):
        """The CLI stops polling when the cluster is initialized."""

        client = mock.Mock()
        # prepare a mock "cluster.status()" method that will return
        # initialized = False on the first 4 calls, and initialized = True
        # on the 5th call
        client.cluster.status = mock.Mock(
            side_effect=[ClusterState({'initialized': False})] * 4 +
            [ClusterState({'initialized': True})])

        with mock.patch('cloudify_cli.commands.cluster.time') as mock_time:
            mock_time.time.return_value = 0
            status = _wait_for_cluster_initialized(client)
        self.assertEqual(5, len(client.cluster.status.mock_calls))
        self.assertTrue(status['initialized'])
Exemple #7
0
    def test_join_origin_profile_updated(self):
        self.client.cluster.status = mock.Mock(side_effect=[
            ClusterState({'initialized': False}),
            NotClusterMaster('not cluster master')
        ])
        self.client.cluster.nodes.add = mock.Mock(
            return_value=ClusterNode({'credentials': 'abc'}))
        with tempfile.NamedTemporaryFile(delete=False) as f:
            f.write('cert or key here\n')
        self.addCleanup(os.unlink, f.name)
        self.master_profile.cluster[0]['ssh_key'] = f.name
        self.master_profile.save()

        self.client.cluster.nodes.list = mock.Mock(return_value=[
            ClusterNode({
                'host_ip': '10.10.1.10',
                'online': True
            })
        ])
        self.client.cluster.join = mock.Mock()
        outcome = self.invoke('cfy cluster join {0}'.format(
            self.master_profile.manager_ip))
        self.assertIn('joined cluster', outcome.logs)

        self.assertEqual(2, len(env.profile.cluster))

        joined_node = env.profile.cluster[1]
        self.assertEqual('10.10.1.10', joined_node['manager_ip'])

        master_node = env.profile.cluster[0]
        self.assertIn('ssh_key', master_node)
        # check that the master's ssh key was copied to the local profile's
        # workdir
        self.assertTrue(master_node['ssh_key'].startswith(env.profile.workdir))
Exemple #8
0
    def test_stops_at_timeout(self):
        """If the cluster is never started, polling stops at timeout."""
        timeout = 900
        clock = {'time': 1000}
        client = mock.Mock()
        client.cluster.status = mock.Mock(
            return_value=ClusterState({'initialized': False}))

        def _mock_sleep(n):
            clock['time'] += n

        def _mock_time():
            return clock['time']

        with mock.patch('cloudify_cli.commands.cluster.time') as mock_time:
            mock_time.sleep = mock.Mock(side_effect=_mock_sleep)
            mock_time.time = _mock_time

            with self.assertRaises(CloudifyCliError) as cm:
                _wait_for_cluster_initialized(client, timeout=timeout)

        self.assertIn('timed out', cm.exception.message.lower())
        # there should be (timeout//interval) time.sleep(interval) calls,
        # so the total time waited is equal to timeout
        self.assertEqual(timeout // WAIT_FOR_EXECUTION_SLEEP_INTERVAL,
                         len(mock_time.sleep.mock_calls))
Exemple #9
0
    def test_join_duplicate_name(self):
        self.client.cluster.status = mock.Mock(side_effect=[
            ClusterState({'initialized': False}),
            ClusterState({}),
        ])
        self.client.cluster.nodes.list = mock.Mock(return_value=[
            ClusterNode({
                'host_ip': '10.10.1.10',
                'online': True,
                'name': 'n'
            })
        ])

        self.client.cluster.join = mock.Mock()
        self.invoke(
            'cfy cluster join {0} --cluster-node-name n'.format(
                self.master_profile.manager_ip),
            'is already a member of the cluster')
Exemple #10
0
 def test_list_nodes(self):
     self.client.cluster.status = mock.Mock(
         return_value=ClusterState({'initialized': True}))
     self.client.cluster.nodes.list = mock.Mock(return_value=[
         ClusterNode({
             'name': 'node name 1',
             'host_ip': '1.2.3.4'
         })
     ])
     outcome = self.invoke('cfy cluster nodes list')
     self.assertIn('node name 1', outcome.logs)
Exemple #11
0
 def test_start_success_with_logs(self):
     self.client.cluster.status = mock.Mock(side_effect=[
         ClusterState({'initialized': False}),
         ClusterState({
             'initialized':
             False,
             'logs': [{
                 'timestamp': 1,
                 'message': 'one log message',
                 'cursor': '1'
             }]
         }),
         ClusterState({'initialized': True}),
     ])
     self.client.cluster.start = mock.Mock()
     with mock.patch('cloudify_cli.commands.cluster.time') as mock_time:
         mock_time.time.return_value = 1000
         outcome = self.invoke(
             'cfy cluster start --cluster-host-ip 1.2.3.4')
     self.assertIn('cluster started', outcome.logs)
     self.assertIn('one log message', outcome.logs)
Exemple #12
0
    def test_pass_cluster_client_initialized(self):
        @pass_cluster_client()
        def _f(client):
            pass

        mock_client = mock.Mock()
        mock_client.cluster.status.return_value = \
            ClusterState({'initialized': True})
        with mock.patch('cloudify_cli.env.get_rest_client',
                        return_value=mock_client):
            _f()
        mock_client.cluster.status.assert_any_call()
Exemple #13
0
    def test_pass_cluster_client_not_initialized(self):
        @pass_cluster_client()
        def _f(client):
            pass

        mock_client = mock.Mock()
        mock_client.cluster.status.return_value = \
            ClusterState({'initialized': False})
        with mock.patch('cloudify_cli.env.get_rest_client',
                        return_value=mock_client):
            with self.assertRaises(CloudifyCliError) as cm:
                _f()
        mock_client.cluster.status.assert_any_call()
        self.assertIn('not part of a Cloudify Manager cluster',
                      str(cm.exception))
Exemple #14
0
    def test_join_success(self):
        self.client.cluster.status = mock.Mock(side_effect=[
            ClusterState({'initialized': False}),
            NotClusterMaster('not cluster master')
        ])
        self.client.cluster.nodes.list = mock.Mock(return_value=[
            ClusterNode({
                'host_ip': '10.10.1.10',
                'online': True
            })
        ])
        self.client.cluster.nodes.add = mock.Mock(
            return_value=ClusterNode({'credentials': 'abc'}))

        self.client.cluster.join = mock.Mock()
        outcome = self.invoke('cfy cluster join {0}'.format(
            self.master_profile.manager_ip))
        self.assertIn('joined cluster', outcome.logs)
Exemple #15
0
    def test_join_profile_updated(self):
        self.client.cluster.status = mock.Mock(side_effect=[
            ClusterState({'initialized': False}),
            NotClusterMaster('not cluster master')
        ])
        self.client.cluster.nodes.add = mock.Mock(
            return_value=ClusterNode({'credentials': 'abc'}))

        self.client.cluster.nodes.list = mock.Mock(return_value=[
            ClusterNode({
                'host_ip': '10.10.1.10',
                'online': True
            })
        ])
        self.client.cluster.join = mock.Mock()
        outcome = self.invoke('cfy cluster join {0}'.format(
            self.master_profile.manager_ip))
        self.assertIn('joined cluster', outcome.logs)

        master_profile = env.get_profile_context('master_profile')
        self.assertEqual(2, len(master_profile.cluster))
        self.assertEqual(env.profile.manager_ip,
                         master_profile.cluster[1]['manager_ip'])
Exemple #16
0
 def test_already_in_cluster(self):
     self.client.cluster.status = mock.Mock(
         return_value=ClusterState({'initialized': True}))
     self.invoke('cfy cluster start --cluster-host-ip 1.2.3.4',
                 'already part of a Cloudify Manager cluster')
Exemple #17
0
 def test_list_not_initialized(self):
     self.client.cluster.status = mock.Mock(
         return_value=ClusterState({'initialized': False}))
     self.invoke('cfy cluster nodes list',
                 'not part of a Cloudify Manager cluster')