Exemple #1
0
def test_import_sqlite():
    """Test loading a database from disk"""
    path = os.path.join(TEST_PATH, 'disk_test.db')

    sqlite3.connect(path)

    db = faro.Database.from_sqlite(path)

    table = faro.Table(data)
    db.add_table(table, 'other_fruits')

    os.remove(path)
Exemple #2
0
def test_constructor_with_header():
    faro.Table(data, header=True)
Exemple #3
0
def test_constructor_no_header():
    faro.Table(data[1:], header=False)
Exemple #4
0
from numpy import ndarray
from pandas import DataFrame

import faro

data = [('fruit', 'id', 'in_stock', 'rating'), ('apple', 24, True, 5.0),
        ('orange', 34, False, 4.1), ('banana', 14, False, 4.9),
        ('peach', 69, True, 3.45)]
table = faro.Table(data, header=True)


def test_constructor_no_header():
    faro.Table(data[1:], header=False)


def test_constructor_with_header():
    faro.Table(data, header=True)


def test_to_list():
    """Tests that results are returned as list of tuples"""
    results = table.to_list()
    assert (type(results) == list)
    assert (type(results[0]) == tuple)


def test_to_matrix():
    """Tests that results are returned as a numpy.ndarray"""
    results = table.to_numpy()
    assert (type(results) == ndarray)
Exemple #5
0
def test_add_faro_table():
    """Tests adding a faro.Table to the database"""
    table = faro.Table(data)
    db.add_table(table, 'other_fruits')