Exemple #1
0
def test_insert(empty_warehouse):
    """
    Inserts a fact with MAX_ITERATIONS ^ 2 rows.
    """
    enable_logging()

    Warehouse.use(empty_warehouse)

    Store.build()
    stores = _get_instances('store')
    Store.insert(*stores)

    Product.build()
    products = _get_instances('product')
    Product.insert(*products)

    Sales.build()
    sales = _get_instances('sales')

    start_time = datetime.datetime.now()
    print 'Starting bulk insert of fact at ', start_time

    try:
        Sales.insert(*sales)
    except OperationalError:
        pytest.fail('The connection broke.')

    end_time = datetime.datetime.now()
    print 'Ending bulk insert of fact at ', end_time

    delta = end_time - start_time
    print 'Time taken = ', delta
Exemple #2
0
def test_can_insert_fact_record(empty_warehouse):
    Warehouse.use(empty_warehouse)

    BoringEvent.build()
    Date.update()
    Place.update()

    fact_1 = BoringEvent()
    fact_1.date = date(2000, 7, 16)
    fact_1.place = "MOON"
    fact_1.people = 3
    fact_1.duration = 10.7
    fact_1.very_boring = False
    BoringEvent.insert(fact_1)

    connection = Warehouse.get()
    cursor = connection.cursor(dictionary=True)
    cursor.execute("select * from %s" % BoringEvent.__tablename__)
    data = cursor.fetchall()
    cursor.close()
    assert len(data) == 1
    datum = data[0]
    assert datum["num_people"] == 3
    assert datum["duration"] == 10.7
    assert bool(datum["very_boring"]) is False
 def test_single_insert(self, empty_warehouse, store):
     """ Insert a single Dimension instance. There shoudn't be any problems.
     """
     Warehouse.use(empty_warehouse)
     Store.build()
     Store.insert(store)
     assert self._fetch_store_row_count() == 1
Exemple #4
0
def test_can_create_fact_if_some_dimensions_exist(empty_warehouse):
    Warehouse.use(empty_warehouse)
    Date.create_table()
    BoringEvent.build()
    assert BoringEvent.table_exists
    assert Date.table_exists
    assert Place.table_exists
Exemple #5
0
 def test_single_insert(self, empty_warehouse, store):
     """ Insert a single Dimension instance. There shoudn't be any problems.
     """
     Warehouse.use(empty_warehouse)
     Store.build()
     Store.insert(store)
     assert self._fetch_store_row_count() == 1
Exemple #6
0
 def test_duplicate_insert(self, empty_warehouse, store, modified_store):
     """ Insert a Dimension twice. The row shouldn't be duplicated.
     """
     Warehouse.use(empty_warehouse)
     Store.build()
     Store.insert(store)
     Store.insert(store)
     assert self._fetch_store_row_count() == 1
 def test_duplicate_insert(self, empty_warehouse, store, modified_store):
     """ Insert a Dimension twice. The row shouldn't be duplicated.
     """
     Warehouse.use(empty_warehouse)
     Store.build()
     Store.insert(store)
     Store.insert(store)
     assert self._fetch_store_row_count() == 1
 def test_modified_insert(self, empty_warehouse, store, modified_store):
     """ Insert a Dimension, followed by a modified version.
     """
     Warehouse.use(empty_warehouse)
     Store.build()
     Store.insert(store)
     Store.insert(modified_store)
     assert self._fetch_store_row_count() == 2
Exemple #9
0
 def test_modified_insert(self, empty_warehouse, store, modified_store):
     """ Insert a Dimension, followed by a modified version.
     """
     Warehouse.use(empty_warehouse)
     Store.build()
     Store.insert(store)
     Store.insert(modified_store)
     assert self._fetch_store_row_count() == 2
 def test_null_values(self, empty_warehouse, store, null_store):
     """
     If the second instance contains a NULL column, then we expect a new
     row to be created.
     """
     Warehouse.use(empty_warehouse)
     Store.build()
     Store.insert(store)
     Store.insert(null_store)
     assert self._fetch_store_row_count() == 2
Exemple #11
0
 def test_null_values(self, empty_warehouse, store, null_store):
     """
     If the second instance contains a NULL column, then we expect a new
     row to be created.
     """
     Warehouse.use(empty_warehouse)
     Store.build()
     Store.insert(store)
     Store.insert(null_store)
     assert self._fetch_store_row_count() == 2
 def test_null_values(self, empty_warehouse, null_store):
     """
     Test that inserting NULL values into Columns doesn't break the unique
     keys i.e. if we keep on inserting the same row, where one column is
     NULL, it won't keep on making copies of that row.
     """
     Warehouse.use(empty_warehouse)
     Store.build()
     Store.insert(null_store)
     Store.insert(null_store)
     assert self._fetch_store_row_count() == 1
Exemple #13
0
 def test_null_values(self, empty_warehouse, null_store):
     """
     Test that inserting NULL values into Columns doesn't break the unique
     keys i.e. if we keep on inserting the same row, where one column is
     NULL, it won't keep on making copies of that row.
     """
     Warehouse.use(empty_warehouse)
     Store.build()
     Store.insert(null_store)
     Store.insert(null_store)
     assert self._fetch_store_row_count() == 1
Exemple #14
0
def test_can_insert_fact_record_from_staging_source(empty_warehouse):
    Warehouse.use(empty_warehouse)
    Staging.build()
    BoringEvent.build()

    # Prepare expansion data ready for expansion.
    connection = Warehouse.get()
    with closing(connection.cursor()) as cursor:
        cursor.execute("""\
        create table extra_table (
            id int primary key,
            colour varchar(20),
            size varchar(20)
        ) charset=utf8 collate=utf8_bin
        """)
        cursor.execute("""\
        insert into extra_table (id, colour, size)
        values (12, 'grün', '37kg'), (13, 'orange', '9 miles')
        """)
    connection.commit()

    # Insert staging record.
    Staging.insert(Staging("boring", {
        "when": date(2000, 7, 16).isoformat(),
        "where": "MOON",
        "num_people": 3,
        "duration": 10.7,
        "very_boring": False,
        "pointless_ignored_value": "spoon",
        "expansion_key_1": 12,
    }))

    # Perform update.
    BoringEvent.update()

    # Check a record has been correctly inserted.
    with closing(connection.cursor(dictionary=True)) as cursor:
        cursor.execute("select * from %s" % BoringEvent.__tablename__)
        data = cursor.fetchall()

    assert len(data) == 1
    datum = data[0]
    assert datum["num_people"] == 3
    assert datum["duration"] == 10.7
    assert bool(datum["very_boring"]) is False
    # mysql returns unicode as bytearrays.
    assert datum["colour_of_stuff"].decode('utf8') == u"grün"
    assert datum["size_of_stuff"].decode('utf8') == "37kg"
Exemple #15
0
    def fetch(cls, since=None, historical=False):
        """ Create date instances as there's no remote data source
        for this one.
        """
        table_name = cls.__tablename__
        log.info("Fetching data from the depths of time itself",
                 extra={"table_name": table_name})

        # Get the last inserted date
        sql = "SELECT MAX(`date`) FROM %s" % escaped(table_name)
        connection = Warehouse.get()
        cursor = connection.cursor()
        cursor.execute(sql)
        cur_date = cursor.fetchall()[0][0]
        cursor.close()

        if cur_date is None:
            # Build history.
            cur_date = cls.start_date

        dates = []
        while cur_date <= cls.end_date:
            yield Date(cur_date)
            cur_date = cur_date + timedelta(days=1)
Exemple #16
0
 def _get_rows(self):
     connection = Warehouse.get()
     with closing(connection.cursor(dictionary=True)) as cursor:
         cursor.execute('SELECT * FROM %s' % Person.__tablename__)
         rows = cursor.fetchall()
     return rows
Exemple #17
0
def test_cannot_create_dimension_twice(empty_warehouse):
    Warehouse.use(empty_warehouse)
    assert Date.create_table()
    assert not Date.create_table()
Exemple #18
0
def test_can_drop_dimension(empty_warehouse):
    Warehouse.use(empty_warehouse)
    Date.create_table()
    Date.drop_table()
    assert not Date.table_exists
 def _fetch_store_row_count(self):
     connection = Warehouse.get()
     with closing(connection.cursor()) as cursor:
         cursor.execute('SELECT COUNT(*) FROM %s' % Store.__tablename__)
         rows = cursor.fetchall()
     return rows[0][0]
def test_can_drop_dimension(empty_warehouse):
    Warehouse.use(empty_warehouse)
    Store.create_table()
    Store.drop_table()
    assert not Store.table_exists
def test_cannot_create_dimension_twice(empty_warehouse):
    Warehouse.use(empty_warehouse)
    assert Store.create_table()
    assert not Store.create_table()
def test_can_create_dimension(empty_warehouse):
    Warehouse.use(empty_warehouse)
    assert Store.create_table()
    assert Store.table_exists
Exemple #23
0
def test_create_trigger(empty_warehouse):
    """ Make sure a trigger can be created.
    """
    Warehouse.use(empty_warehouse)
    Sales.build()
    assert Sales.trigger_name in Warehouse.trigger_names
Exemple #24
0
def test_can_create_dimension(empty_warehouse):
    Warehouse.use(empty_warehouse)
    assert Date.create_table()
    assert Date.table_exists
Exemple #25
0
def test_create_duplicate_trigger(empty_warehouse):
    """ Make sure a trigger isn't created if one already exists.
    """
    Warehouse.use(empty_warehouse)
    Sales.build()
    assert not Sales.create_trigger()
Exemple #26
0
 def _fetch_store_row_count(self):
     connection = Warehouse.get()
     with closing(connection.cursor()) as cursor:
         cursor.execute('SELECT COUNT(*) FROM %s' % Store.__tablename__)
         rows = cursor.fetchall()
     return rows[0][0]