Add circle file and test schema
This commit is contained in:
parent
b1b0607123
commit
f563c59234
2 changed files with 130 additions and 0 deletions
11
circle.yml
Normal file
11
circle.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
test:
|
||||
pre:
|
||||
- go get github.com/jstemmer/go-junit-report
|
||||
- echo -e "[postgres]\nhost=\"localhost\"\nport=5432\nuser=\"ubuntu\"\ndbname=\"sqlboiler\"" > sqlboiler.toml
|
||||
- createdb -U ubuntu sqlboiler
|
||||
- psql -U ubuntu sqlboiler < ./testdata/test_schema.sql
|
||||
- ./sqlboiler postgres
|
||||
override:
|
||||
- >
|
||||
go test -v -race ./... |
|
||||
go-junit-report >> $CIRCLE_TEST_REPORTS/junit.xml
|
119
testdata/test_schema.sql
vendored
Normal file
119
testdata/test_schema.sql
vendored
Normal file
|
@ -0,0 +1,119 @@
|
|||
CREATE TABLE magic (
|
||||
id serial PRIMARY KEY NOT NULL,
|
||||
id_two serial NOT NULL,
|
||||
id_three serial,
|
||||
|
||||
bool_zero bool,
|
||||
bool_one bool NULL,
|
||||
bool_two bool NOT NULL,
|
||||
bool_three bool NULL DEFAULT FALSE,
|
||||
bool_four bool NULL DEFAULT TRUE,
|
||||
bool_five bool NOT NULL DEFAULT FALSE,
|
||||
bool_six bool NOT NULL DEFAULT TRUE,
|
||||
|
||||
string_zero VARCHAR(1),
|
||||
string_one VARCHAR(1) NULL,
|
||||
string_two VARCHAR(1) NOT NULL,
|
||||
string_three VARCHAR(1) NULL DEFAULT 'a',
|
||||
string_four VARCHAR(1) NOT NULL DEFAULT 'b',
|
||||
string_five VARCHAR(1000),
|
||||
string_six VARCHAR(1000) NULL,
|
||||
string_seven VARCHAR(1000) NOT NULL,
|
||||
string_eight VARCHAR(1000) NULL DEFAULT 'abcdefgh',
|
||||
string_nine VARCHAR(1000) NOT NULL DEFAULT 'abcdefgh',
|
||||
string_ten VARCHAR(1000) NULL DEFAULT '',
|
||||
string_eleven VARCHAR(1000) NOT NULL DEFAULT '',
|
||||
|
||||
big_int_zero bigint,
|
||||
big_int_one bigint NULL,
|
||||
big_int_two bigint NOT NULL,
|
||||
big_int_three bigint NULL DEFAULT 111111,
|
||||
big_int_four bigint NOT NULL DEFAULT 222222,
|
||||
big_int_five bigint NULL DEFAULT 0,
|
||||
big_int_six bigint NOT NULL DEFAULT 0,
|
||||
|
||||
int_zero int,
|
||||
int_one int NULL,
|
||||
int_two int NOT NULL,
|
||||
int_three int NULL DEFAULT 333333,
|
||||
int_four int NOT NULL DEFAULT 444444,
|
||||
int_five int NULL DEFAULT 0,
|
||||
int_six int NOT NULL DEFAULT 0,
|
||||
|
||||
float_zero decimal,
|
||||
float_one numeric,
|
||||
float_two numeric(2,1),
|
||||
float_three numeric(2,1),
|
||||
float_four numeric(2,1) NULL,
|
||||
float_five numeric(2,1) NOT NULL,
|
||||
float_six numeric(2,1) NULL DEFAULT 1.1,
|
||||
float_seven numeric(2,1) NOT NULL DEFAULT 1.1,
|
||||
float_eight numeric(2,1) NULL DEFAULT 0.0,
|
||||
float_nine numeric(2,1) NULL DEFAULT 0.0,
|
||||
|
||||
bytea_zero bytea,
|
||||
bytea_one bytea NULL,
|
||||
bytea_two bytea NOT NULL,
|
||||
bytea_three bytea NOT NULL DEFAULT 'a',
|
||||
bytea_four bytea NULL DEFAULT 'b',
|
||||
bytea_five bytea NOT NULL DEFAULT 'abcdefghabcdefghabcdefgh',
|
||||
bytea_six bytea NULL DEFAULT 'hgfedcbahgfedcbahgfedcba',
|
||||
bytea_seven bytea NOT NULL DEFAULT '',
|
||||
bytea_eight bytea NOT NULL DEFAULT '',
|
||||
|
||||
time_zero timestamp,
|
||||
time_one date,
|
||||
time_two timestamp NULL DEFAULT NULL,
|
||||
time_three timestamp NULL,
|
||||
time_four timestamp NOT NULL,
|
||||
time_five timestamp NULL DEFAULT '1999-01-08 04:05:06.789',
|
||||
time_six timestamp NULL DEFAULT '1999-01-08 04:05:06.789 -8:00',
|
||||
time_seven timestamp NULL DEFAULT 'January 8 04:05:06 1999 PST',
|
||||
time_eight timestamp NOT NULL DEFAULT '1999-01-08 04:05:06.789',
|
||||
time_nine timestamp NOT NULL DEFAULT '1999-01-08 04:05:06.789 -8:00',
|
||||
time_ten timestamp NOT NULL DEFAULT 'January 8 04:05:06 1999 PST',
|
||||
time_eleven date NULL,
|
||||
time_twelve date NOT NULL,
|
||||
time_thirteen date NULL DEFAULT '1999-01-08',
|
||||
time_fourteen date NULL DEFAULT 'January 8, 1999',
|
||||
time_fifteen date NULL DEFAULT '19990108',
|
||||
time_sixteen date NOT NULL DEFAULT '1999-01-08',
|
||||
time_seventeen date NOT NULL DEFAULT 'January 8, 1999',
|
||||
time_eighteen date NOT NULL DEFAULT '19990108',
|
||||
|
||||
uuid_zero uuid,
|
||||
uuid_one uuid NULL,
|
||||
uuid_two uuid NULL DEFAULT NULL,
|
||||
uuid_three uuid NOT NULL,
|
||||
uuid_four uuid NULL DEFAULT '6ba7b810-9dad-11d1-80b4-00c04fd430c8',
|
||||
uuid_five uuid NOT NULL DEFAULT '6ba7b810-9dad-11d1-80b4-00c04fd430c8',
|
||||
|
||||
strange_one integer DEFAULT '5'::integer,
|
||||
strange_two varchar(1000) DEFAULT 5::varchar,
|
||||
strange_three timestamp without time zone default (now() at time zone 'utc'),
|
||||
strange_four timestamp with time zone default (now() at time zone 'utc'),
|
||||
strange_five interval NOT NULL DEFAULT '21 days',
|
||||
strange_six interval NULL DEFAULT '23 hours'
|
||||
);
|
||||
|
||||
create table owner (
|
||||
id serial primary key not null,
|
||||
name varchar(255) not null
|
||||
);
|
||||
|
||||
create table cats (
|
||||
id serial primary key not null,
|
||||
name varchar(255) not null,
|
||||
owner_id int references owner (id)
|
||||
);
|
||||
|
||||
create table toys (
|
||||
id serial primary key not null,
|
||||
name varchar(255) not null
|
||||
);
|
||||
|
||||
create table cat_toys (
|
||||
cat_id int not null references cats (id),
|
||||
toy_id int not null references toys (id),
|
||||
primary key (cat_id, toy_id)
|
||||
);
|
Loading…
Add table
Reference in a new issue