Exemplo n.º 1
0
    def test_should_run(self):
        "should run remd runner with correct parameters"
        launch.launch(self.log_handler)

        self.mock_remd_slave.run.assert_called_once_with(
            self.mock_comm, self.mock_runner
        )
Exemplo n.º 2
0
    def test_should_init_store(self):
        "should initialize the store"
        with in_temp_dir():
            os.mkdir("Logs")

            launch.launch("Reference", self.log_handler)

            self.mock_store.initialize.assert_called_once_with(mode="a")
Exemplo n.º 3
0
    def test_should_init_comm(self):
        "should initialize the communicator"
        with in_temp_dir():
            os.mkdir("Logs")

            launch.launch("Reference", self.log_handler)

            self.mock_comm.initialize.assert_called_once_with()
Exemplo n.º 4
0
    def test_load_datastore(self):
        "should call load the datastore"
        with in_temp_dir():
            os.mkdir("Logs")

            launch.launch("Reference", self.log_handler)

            self.MockDataStore.load_data_store.assert_called_once_with()
Exemplo n.º 5
0
    def test_should_run(self):
        "should run remd runner with correct parameters"
        with in_temp_dir():
            os.mkdir("Logs")

            launch.launch("Reference", self.log_handler)

            self.mock_remd_leader.run.assert_called_once_with(
                self.mock_comm, self.mock_runner, self.mock_store)
Exemplo n.º 6
0
    def test_should_call_to_slave(self):
        "should call to_slave on remd_runner"
        launch.launch(self.log_handler)

        self.mock_remd_master.to_slave.assert_called_once_with()
Exemplo n.º 7
0
    def test_should_run(self):
        "should run remd runner with correct parameters"
        launch.launch("Reference", self.log_handler)

        self.mock_remd_follower.run.assert_called_once_with(
            self.mock_comm, self.mock_runner)
Exemplo n.º 8
0
    def test_should_init_comm(self):
        "should initialize the communicator"
        launch.launch("Reference", self.log_handler)

        self.mock_comm.initialize.assert_called_once_with()
Exemplo n.º 9
0
    def test_should_not_init_store(self):
        "should not init store"
        launch.launch()

        self.assertEqual(self.mock_store.initialize.call_count, 0)
Exemplo n.º 10
0
    def test_should_call_to_slave(self):
        "should call to_slave on remd_runner"
        launch.launch()

        self.mock_remd_master.to_slave.assert_called_once_with()
Exemplo n.º 11
0
    def test_should_init_comm(self):
        "should initialize the communicator"
        launch.launch()

        self.mock_comm.initialize.assert_called_once_with()
Exemplo n.º 12
0
    def test_load_datastore(self):
        "should call vault.DataStore.load_data_store to load the data_store"
        launch.launch()

        self.MockDataStore.load_data_store.assert_called_once_with()
Exemplo n.º 13
0
    def test_should_run(self):
        "should run remd runner with correct parameters"
        launch.launch()

        self.mock_remd_master.run.assert_called_once_with(self.mock_comm, self.mock_runner, self.mock_store)
Exemplo n.º 14
0
    def test_should_init_store(self):
        "should initialize the store"
        launch.launch()

        self.mock_store.initialize.assert_called_once_with(mode='a')
Exemplo n.º 15
0
    def test_load_datastore(self):
        "should call load the datastore"
        launch.launch(self.log_handler)

        self.MockDataStore.load_data_store.assert_called_once_with()
Exemplo n.º 16
0
    def test_load_datastore(self):
        "should call vault.DataStore.load_data_store to load the data_store"
        launch.launch("Reference", self.log_handler)

        self.MockDataStore.load_data_store.assert_called_once_with()
Exemplo n.º 17
0
    def test_should_init_store(self):
        "should initialize the store"
        launch.launch(self.log_handler)

        self.mock_store.initialize.assert_called_once_with(mode="a")
Exemplo n.º 18
0
    def test_should_call_to_follower(self):
        "should call to_follower on remd_runner"
        launch.launch("Reference", self.log_handler)

        self.mock_remd_leader.to_follower.assert_called_once_with()
Exemplo n.º 19
0
    def test_should_run(self):
        "should run remd runner with correct parameters"
        launch.launch(self.log_handler)

        self.mock_remd_master.run.assert_called_once_with(
            self.mock_comm, self.mock_runner, self.mock_store)
Exemplo n.º 20
0
    def test_should_not_init_store(self):
        "should not init store"
        launch.launch("Reference", self.log_handler)

        self.assertEqual(self.mock_store.initialize.call_count, 0)
Exemplo n.º 21
0
    def test_load_datastore(self):
        "should call load the datastore"
        launch.launch(self.log_handler)

        self.MockDataStore.load_data_store.assert_called_once_with()