Added scripts for generating fixtures - no data stored for now
This commit is contained in:
parent
9b9b2bd322
commit
2dfce6afd2
2 changed files with 237 additions and 0 deletions
109
t/etc/fixtures/config/leaderboards.pl
Normal file
109
t/etc/fixtures/config/leaderboards.pl
Normal file
|
@ -0,0 +1,109 @@
|
|||
#! /usr/bin/env perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use 5.020;
|
||||
|
||||
use DBIx::Class::Fixtures;
|
||||
use FindBin qw/ $Bin /;
|
||||
use lib "$Bin/../../../../lib";
|
||||
use Pear::LocalLoop::Schema;
|
||||
use DateTime;
|
||||
use Devel::Dwarn;
|
||||
|
||||
my $fixtures = DBIx::Class::Fixtures->new({
|
||||
config_dir => "$Bin",
|
||||
});
|
||||
|
||||
my $schema = Pear::LocalLoop::Schema->connect('dbi:SQLite::memory:');
|
||||
|
||||
$schema->deploy;
|
||||
|
||||
$fixtures->populate({
|
||||
directory => "$Bin/../data/transactions",
|
||||
no_deploy => 1,
|
||||
schema => $schema,
|
||||
});
|
||||
|
||||
my $trans_rs = $schema->resultset('Transaction')->search( undef, { order_by => { '-asc' => 'purchase_time' } } );
|
||||
|
||||
my $first = $trans_rs->first->purchase_time;
|
||||
|
||||
# Start with the first monday after this transaction
|
||||
my $beginning_of_week = $first->clone->truncate( to => 'week' );
|
||||
|
||||
# Start with the first month after this transaction
|
||||
my $beginning_of_month = $first->clone->truncate( to => 'month' );
|
||||
|
||||
say "First Entry";
|
||||
say $first->iso8601;
|
||||
say "First Week";
|
||||
say $beginning_of_week->iso8601;
|
||||
say "First Month";
|
||||
say $beginning_of_month->iso8601;
|
||||
|
||||
$trans_rs = $schema->resultset('Transaction')->search( undef, { order_by => { '-desc' => 'purchase_time' } } );
|
||||
|
||||
my $last = $trans_rs->first->purchase_time->subtract( days => 1 );
|
||||
|
||||
my $end_week = $last->clone->truncate( to => 'week' )->subtract( weeks => 1 );
|
||||
|
||||
my $end_month = $last->clone->truncate( to => 'month' );
|
||||
|
||||
say "Last Entry";
|
||||
say $last->iso8601;
|
||||
say "Last Week";
|
||||
say $end_week->iso8601;
|
||||
say "Last Month";
|
||||
say $end_month->iso8601;
|
||||
|
||||
say "Calculating Daily Leaderboards from " . $first->iso8601 . " to " . $last->iso8601;
|
||||
|
||||
my $leaderboard_rs = $schema->resultset('Leaderboard');
|
||||
my $daily_date = $first->clone;
|
||||
|
||||
while ( $daily_date <= $last ) {
|
||||
say "Creating Daily Total for " . $daily_date->iso8601;
|
||||
$leaderboard_rs->create_new( 'daily_total', $daily_date );
|
||||
say "Creating Daily Count for " . $daily_date->iso8601;
|
||||
$leaderboard_rs->create_new( 'daily_count', $daily_date );
|
||||
$daily_date->add( days => 1 );
|
||||
}
|
||||
|
||||
say "Created " . $leaderboard_rs->find({ type => 'daily_total' })->sets->count . " Daily Total boards";
|
||||
say "Created " . $leaderboard_rs->find({ type => 'daily_count' })->sets->count . " Daily Count boards";
|
||||
|
||||
my $weekly_date = $beginning_of_week->clone;
|
||||
|
||||
while ( $weekly_date <= $end_week ) {
|
||||
say "Creating Weekly Total for " . $weekly_date->iso8601;
|
||||
$leaderboard_rs->create_new( 'weekly_total', $weekly_date );
|
||||
say "Creating Weekly Count for " . $weekly_date->iso8601;
|
||||
$leaderboard_rs->create_new( 'weekly_count', $weekly_date );
|
||||
$weekly_date->add( weeks => 1 );
|
||||
}
|
||||
|
||||
say "Created " . $leaderboard_rs->find({ type => 'weekly_total' })->sets->count . " Weekly Total boards";
|
||||
say "Created " . $leaderboard_rs->find({ type => 'weekly_count' })->sets->count . " Weekly Count boards";
|
||||
|
||||
my $monthly_date = $beginning_of_month->clone;
|
||||
|
||||
while ( $monthly_date <= $end_month ) {
|
||||
say "Creating Monthly Total for " . $monthly_date->iso8601;
|
||||
$leaderboard_rs->create_new( 'monthly_total', $monthly_date );
|
||||
say "Creating Monthly Count for " . $monthly_date->iso8601;
|
||||
$leaderboard_rs->create_new( 'monthly_count', $monthly_date );
|
||||
$monthly_date->add( months => 1 );
|
||||
}
|
||||
|
||||
say "Created " . $leaderboard_rs->find({ type => 'monthly_total' })->sets->count . " Monthly Total boards";
|
||||
say "Created " . $leaderboard_rs->find({ type => 'monthly_count' })->sets->count . " Monthly Count boards";
|
||||
|
||||
my $data_set = 'leaderboards';
|
||||
|
||||
$fixtures->dump({
|
||||
all => 1,
|
||||
schema => $schema,
|
||||
directory => "$Bin/../data/" . $data_set,
|
||||
});
|
128
t/etc/fixtures/config/transactions.pl
Normal file
128
t/etc/fixtures/config/transactions.pl
Normal file
|
@ -0,0 +1,128 @@
|
|||
#! /usr/bin/env perl
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use DBIx::Class::Fixtures;
|
||||
use FindBin qw/ $Bin /;
|
||||
use lib "$Bin/../../../../lib";
|
||||
use Pear::LocalLoop::Schema;
|
||||
use DateTime;
|
||||
use Devel::Dwarn;
|
||||
|
||||
my $fixtures = DBIx::Class::Fixtures->new({
|
||||
config_dir => "$Bin",
|
||||
});
|
||||
|
||||
my $schema = Pear::LocalLoop::Schema->connect('dbi:SQLite::memory:');
|
||||
|
||||
$schema->deploy;
|
||||
|
||||
$schema->resultset('Leaderboard')->populate([
|
||||
[ qw/ name type / ],
|
||||
[ 'Daily Total', 'daily_total' ],
|
||||
[ 'Daily Count', 'daily_count' ],
|
||||
[ 'Weekly Total', 'weekly_total' ],
|
||||
[ 'Weekly Count', 'weekly_count' ],
|
||||
[ 'Monthly Total', 'monthly_total' ],
|
||||
[ 'Monthly Count', 'monthly_count' ],
|
||||
[ 'All Time Total', 'all_time_total' ],
|
||||
[ 'All Time Count', 'all_time_count' ],
|
||||
]);
|
||||
|
||||
my $user1 = {
|
||||
customer => {
|
||||
full_name => 'Test User1',
|
||||
display_name => 'Test User1',
|
||||
postcode => 'LA1 1AA',
|
||||
year_of_birth => 2006,
|
||||
},
|
||||
email => 'test1@example.com',
|
||||
password => 'abc123',
|
||||
};
|
||||
|
||||
my $user2 = {
|
||||
customer => {
|
||||
full_name => 'Test User2',
|
||||
display_name => 'Test User2',
|
||||
postcode => 'LA1 1AA',
|
||||
year_of_birth => 2006,
|
||||
},
|
||||
email => 'test2@example.com',
|
||||
password => 'abc123',
|
||||
};
|
||||
|
||||
my $user3 = {
|
||||
customer => {
|
||||
full_name => 'Test User3',
|
||||
display_name => 'Test User3',
|
||||
postcode => 'LA1 1AA',
|
||||
year_of_birth => 2006,
|
||||
},
|
||||
email => 'test3@example.com',
|
||||
password => 'abc123',
|
||||
};
|
||||
|
||||
my $user4 = {
|
||||
customer => {
|
||||
full_name => 'Test User4',
|
||||
display_name => 'Test User4',
|
||||
postcode => 'LA1 1AA',
|
||||
year_of_birth => 2006,
|
||||
},
|
||||
email => 'test4@example.com',
|
||||
password => 'abc123',
|
||||
};
|
||||
|
||||
my $org = {
|
||||
organisation => {
|
||||
name => 'Test Org',
|
||||
street_name => 'Test Street',
|
||||
town => 'Lancaster',
|
||||
postcode => 'LA1 1AA',
|
||||
},
|
||||
email => 'test5@example.com',
|
||||
password => 'abc123',
|
||||
};
|
||||
|
||||
$schema->resultset('User')->create( $_ )
|
||||
for ( $user1, $user2, $user3, $user4, $org );
|
||||
|
||||
my $org_result = $schema->resultset('Organisation')->find({ name => $org->{organisation}{name} });
|
||||
|
||||
my $dtf = $schema->storage->datetime_parser;
|
||||
|
||||
# Number of hours in 90 days
|
||||
my $time_count = 24 * 90;
|
||||
|
||||
for my $user ( $user1, $user2, $user3, $user4 ) {
|
||||
|
||||
my $start = DateTime->new(
|
||||
year => 2017,
|
||||
month => 8,
|
||||
day => 1,
|
||||
hour => 0,
|
||||
minute => 0,
|
||||
second => 0,
|
||||
time_zone => 'UTC',
|
||||
);
|
||||
|
||||
my $user_result = $schema->resultset('User')->find({ email => $user->{email} });
|
||||
for ( 0 .. $time_count ) {
|
||||
$user_result->create_related( 'transactions', {
|
||||
seller_id => $org_result->id,
|
||||
value => ( int( rand( 10000 ) ) / 100 ),
|
||||
proof_image => 'a',
|
||||
purchase_time => $start->clone->subtract( hours => $_ ),
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
my $data_set = 'transactions';
|
||||
|
||||
$fixtures->dump({
|
||||
all => 1,
|
||||
schema => $schema,
|
||||
directory => "$Bin/../data/" . $data_set,
|
||||
});
|
||||
|
Reference in a new issue