Example #1
0
    def test_should_correctly_instantiate_singleton_class_get_instance_should_always_get_same_result(
            self):
        instance = EaseRunner.get_instance(argv)
        instance_b = EaseRunner.get_instance()

        self.assertEqual(argv[1], instance.config_dir)
        self.assertEqual(instance, instance_b)
Example #2
0
    def test_configuration_path_cannot_change_when_we_pass_argument_to_get_instance_method(
            self):
        EaseRunner.get_instance(argv)
        EaseRunner.get_instance(argv_other)
        instance = EaseRunner.get_instance()

        self.assertEqual(argv[1], instance.config_dir)
        self.assertNotEqual(argv_other[1], instance.config_dir)
Example #3
0
    def test_should_initialize_object_with_parameters_from_general_yml_file(
            self):
        path = str(pwd()) + '/app/tests/lib/config/config'
        EaseRunner.get_instance(['', path])
        MainConfigContext.get_instance()
        publisher = OutputPublisher()
        info = publisher.info()

        self.assertEqual(100, info['max_queue_size'])
        self.assertEqual(15, info['max_consumers_size'])
        self.assertFalse(info['autopublishing'])
Example #4
0
 def setUp(self):
     # Hack, override config_dir to test make sense
     # Why? Because in other tests config_dir variable is set, a
     EaseRunner.get_instance().config_dir = argv[1]
Example #5
0
    def test_runner_should_be_instantiated_with_empty_pipeline_list(self):
        instance = EaseRunner.get_instance(argv)

        self.assertIsNotNone(instance.pipeline_executors)
        self.assertEqual(0, len(instance.pipeline_executors))
Example #6
0
    def test_should_cannot_instantiate_second_instance_of_singleton_EasyRunner_class(
            self):
        EaseRunner.get_instance(argv)

        with self.assertRaises(RunnerException):
            EaseRunner(argv)
Example #7
0
import sys
from flask import Flask
from flask_restful import Api
from app.api.api_context import ApiContext
from app.lib.runner.runner import EaseRunner

app = Flask(__name__)
api = Api(app)

ApiContext(api).init_controller_list()
EaseRunner.get_instance(sys.argv)
"""
Running method for development mode
"""
if __name__ == '__main__':
    ApiContext(api).init_controller_list()
    EaseRunner.get_instance(sys.argv)
    app.run()