Ejemplo n.º 1
0
def test_find_parent_directory_relative():
    directory = 'conf'
    filename = 'properties.cfg'
    expected_config_directory = os.path.join(os.getcwd(), 'conf')

    assert expected_config_directory == DriverWrappersPool._find_parent_directory(
        directory, filename)
Ejemplo n.º 2
0
def test_find_parent_directory_file_not_found():
    directory = 'conf'
    filename = 'unknown'
    expected_config_directory = os.path.join(os.getcwd(), 'conf')

    assert expected_config_directory == DriverWrappersPool._find_parent_directory(
        directory, filename)
Ejemplo n.º 3
0
def test_find_parent_directory_absolute_recursively():
    directory = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                             'unknown', 'conf')
    filename = 'properties.cfg'
    expected_config_directory = os.path.join(
        os.path.dirname(os.path.realpath(__file__)), 'conf')

    assert expected_config_directory == DriverWrappersPool._find_parent_directory(
        directory, filename)
Ejemplo n.º 4
0
    def test_find_parent_directory_absolute(self):
        directory = os.path.join(os.path.dirname(os.path.realpath(__file__)),
                                 'conf')
        filename = 'properties.cfg'
        expected_config_directory = os.path.join(
            os.path.dirname(os.path.realpath(__file__)), 'conf')

        assert_equal(
            expected_config_directory,
            DriverWrappersPool._find_parent_directory(directory, filename))
Ejemplo n.º 5
0
    def test_find_parent_directory_absolute_recursively(self):
        directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'unknown', 'conf')
        filename = 'properties.cfg'
        expected_config_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'conf')

        assert_equal(expected_config_directory, DriverWrappersPool._find_parent_directory(directory, filename))
Ejemplo n.º 6
0
    def test_find_parent_directory_file_not_found(self):
        directory = 'conf'
        filename = 'unknown'
        expected_config_directory = os.path.join(os.getcwd(), 'conf')

        assert_equal(expected_config_directory, DriverWrappersPool._find_parent_directory(directory, filename))
Ejemplo n.º 7
0
    def test_find_parent_directory_relative(self):
        directory = 'conf'
        filename = 'properties.cfg'
        expected_config_directory = os.path.join(os.getcwd(), 'conf')

        assert_equal(expected_config_directory, DriverWrappersPool._find_parent_directory(directory, filename))
def test_find_parent_directory_absolute():
    directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'conf')
    filename = 'properties.cfg'
    expected_config_directory = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'conf')

    assert expected_config_directory == DriverWrappersPool._find_parent_directory(directory, filename)