예제 #1
0
    def test_fetch_deploy_all_same_paths(self, mock_ensure,
                                         mock_local_exists,
                                         mock_remote_exists,
                                         mock_put, mock_get):
        env.host = 'any_host'
        get_files = set()
        put_files = set()

        def get(remote_path, local_path):
            get_files.add((local_path, remote_path))

        def put(local_path, remote_path):
            put_files.add((local_path, remote_path))

        mock_put.side_effect = put
        mock_get.side_effect = get

        # Local files don't exist for the fetch phase so we don't have to
        # worry about allow_overwrite behavior.
        mock_local_exists.return_value = False
        mock_remote_exists.return_value = True

        local_dir = 'any_dir'
        configure_cmds.fetch_all(local_dir)

        # Local files *do* exist for the deploy phase. If not, they'll be
        # skipped and the test will fail.
        mock_local_exists.return_value = True
        configure_cmds.deploy_all(local_dir)
        self.assertTrue(len(get_files) > 0)
        self.assertEquals(get_files, put_files)
예제 #2
0
 def test_fetchall_overwrite(self, mock_fetch, mock_ensure, mock_exists):
     mock_exists.return_value = True
     env.host = 'any_host'
     configure_cmds.fetch_all('any_dir', allow_overwrite=True)
     self.assertTrue(mock_fetch.called)