test(sqltest): Remove impossible assertion

Now that there is an auth token fact table in the data warehouse, it is
not possible to insert an auth_token with an old public_id even after
that auth_token was deleted, since it now causes a constraint violation
on the data warehouse table.
pull/4445/head
Timothy Messier 2 years ago
parent 9514a76289
commit bbb43e20a0
No known key found for this signature in database
GPG Key ID: EFD2F184F7600572

@ -3,7 +3,7 @@
begin;
select plan(13);
select plan(10);
-- Verify the trigger functions exist and are declared properly
select has_function('insert_deleted_id');
@ -25,17 +25,6 @@ begin;
select is(count(*), 0::bigint) from auth_token where public_id = 'tok____clare';
select is(count(*), 1::bigint) from auth_token_deleted;
-- Add new auth token with duplicate public_id, delete and check that there's no error
insert into auth_token
(key_id, auth_account_id, public_id, token)
values
('kdkv__colors', 'apa____clare', 'tok____clare', 'tok____clare'::bytea);
prepare delete_again as
delete from auth_token where public_id = 'tok____clare';
select lives_ok('delete_again');
select is(count(*), 0::bigint) from auth_token where public_id = 'tok____clare';
select is(count(*), 1::bigint) from auth_token_deleted;
select * from finish();
rollback;

Loading…
Cancel
Save