Esempio 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
        )
Esempio 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")
Esempio 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()
Esempio 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()
Esempio 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)
Esempio 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()
Esempio 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)
Esempio 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()
Esempio 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)
Esempio 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()
Esempio n. 11
0
    def test_should_init_comm(self):
        "should initialize the communicator"
        launch.launch()

        self.mock_comm.initialize.assert_called_once_with()
Esempio 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()
Esempio 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)
Esempio 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')
Esempio 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()
Esempio 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()
Esempio 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")
Esempio 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()
Esempio 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)
Esempio 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)
Esempio 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()