Esempio n. 1
0
    def test_variable_is_not_on_the_command_line_or_config_var_is_not_required___none_is_returned(
            self):
        with NamedTemporaryFile('w') as conf_file:
            json.dump({'bar': 'boo'}, conf_file)
            conf_file.flush()

            args = Namespace(config=conf_file.name)

            inputs = InputValues(args)

            self.assertIsNone(inputs.get('foo'))
Esempio n. 2
0
    def test_variable_is_not_on_the_command_line_or_config_var_is_not_required_default_is_supplied___default_is_returned(
            self, default):
        with NamedTemporaryFile('w') as conf_file:
            json.dump({'bar': 'boo'}, conf_file)
            conf_file.flush()

            args = Namespace(config=conf_file.name)

            inputs = InputValues(args)

            self.assertEqual(default, inputs.get('foo', default=default))
Esempio n. 3
0
    def test_variable_is_not_on_the_command_line_but_is_in_config___config_is_used(
            self, conf_var):
        with NamedTemporaryFile('w') as conf_file:
            json.dump({'foo': conf_var}, conf_file)
            conf_file.flush()

            args = Namespace(config=conf_file.name)

            inputs = InputValues(args)

            self.assertEqual(conf_var, inputs.get('foo'))
Esempio n. 4
0
    def test_variable_is_not_on_the_command_line_or_config_var_is_required___error_is_raised(
            self):
        with NamedTemporaryFile('w') as conf_file:
            json.dump({'bar': 'boo'}, conf_file)
            conf_file.flush()

            args = Namespace(config=conf_file.name)

            inputs = InputValues(args)

            with self.assertRaises(OasisException):
                inputs.get('foo', required=True)
Esempio n. 5
0
    def test_variable_is_not_on_the_command_line_or_config_var_is_not_required_default_is_supplied___default_is_returned(self, default):
        conf_file = NamedTemporaryFile('w', delete=False)
        try:
            json.dump({'bar': 'boo'}, conf_file)
            conf_file.close()

            args = Namespace(config=conf_file.name)

            inputs = InputValues(args)

            self.assertEqual(default, inputs.get('foo', default=default))
        finally:
            os.remove(conf_file.name)
Esempio n. 6
0
    def test_variable_is_not_on_the_command_line_but_is_in_config___config_is_used(self, conf_var):
        conf_file = NamedTemporaryFile('w', delete=False)
        try:
            json.dump({'foo': conf_var}, conf_file)
            conf_file.close()

            args = Namespace(config=conf_file.name)

            inputs = InputValues(args)

            self.assertEqual(conf_var, inputs.get('foo'))
        finally:
            os.remove(conf_file.name)
Esempio n. 7
0
    def test_variable_is_not_on_the_command_line_or_config_var_is_required___error_is_raised(self):
        conf_file = NamedTemporaryFile('w', delete=False)
        try:
            json.dump({'bar': 'boo'}, conf_file)
            conf_file.close()

            args = Namespace(config=conf_file.name)

            inputs = InputValues(args)

            with self.assertRaises(OasisException):
                inputs.get('foo', required=True)
        finally:
            os.remove(conf_file.name)
Esempio n. 8
0
    def test_variable_is_a_path___path_is_relative_to_config_file(self):
        with NamedTemporaryFile('w') as conf_file:
            json.dump({'foo': 'some/path'}, conf_file)
            conf_file.flush()

            expected_result = os.path.abspath(
                os.path.join(os.path.dirname(conf_file.name), 'some', 'path'))

            args = Namespace(config=conf_file.name)

            inputs = InputValues(args)

            result = inputs.get('foo', required=True, is_path=True)

            self.assertEqual(expected_result, result)
Esempio n. 9
0
    def test_variable_is_a_path___path_is_relative_to_config_file(self):
        conf_file = NamedTemporaryFile('w', delete=False)
        try:
            test_path = os.path.join("some", "path")
            json.dump({'foo': test_path}, conf_file)
            conf_file.close()

            expected_result = os.path.abspath(
                os.path.join(os.path.dirname(conf_file.name), test_path))

            args = Namespace(config=conf_file.name)

            inputs = InputValues(args)

            result = inputs.get('foo', required=True, is_path=True)

            self.assertEqual(expected_result, result)
        finally:
            os.remove(conf_file.name)