Beispiel #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
        )
Beispiel #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")
Beispiel #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()
Beispiel #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()
Beispiel #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)
Beispiel #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()
Beispiel #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)
Beispiel #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()
Beispiel #9
0
    def test_should_not_init_store(self):
        "should not init store"
        launch.launch()

        self.assertEqual(self.mock_store.initialize.call_count, 0)
Beispiel #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()
Beispiel #11
0
    def test_should_init_comm(self):
        "should initialize the communicator"
        launch.launch()

        self.mock_comm.initialize.assert_called_once_with()
Beispiel #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()
Beispiel #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)
Beispiel #14
0
    def test_should_init_store(self):
        "should initialize the store"
        launch.launch()

        self.mock_store.initialize.assert_called_once_with(mode='a')
Beispiel #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()
Beispiel #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()
Beispiel #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")
Beispiel #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()
Beispiel #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)
Beispiel #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)
Beispiel #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()