96 lines
3.0 KiB
PL/PgSQL
96 lines
3.0 KiB
PL/PgSQL
begin;
|
|
create extension "basejump-supabase_test_helpers" version '0.0.6';
|
|
|
|
select no_plan();
|
|
|
|
select makerkit.set_identifier('primary_owner', 'test@makerkit.dev');
|
|
select makerkit.set_identifier('owner', 'owner@makerkit.dev');
|
|
select makerkit.set_identifier('member', 'member@makerkit.dev');
|
|
select makerkit.set_identifier('custom', 'custom@makerkit.dev');
|
|
|
|
INSERT INTO public.billing_customers(account_id, provider, customer_id)
|
|
VALUES (tests.get_supabase_uid('primary_owner'), 'stripe', 'cus_test');
|
|
|
|
-- Call the upsert_order function
|
|
SELECT public.upsert_order(tests.get_supabase_uid('primary_owner'), 'cus_test', 'order_test', 'pending', 'stripe', 100, 'usd', '[
|
|
{"id":"order_item_1", "product_id": "prod_test", "variant_id": "var_test", "price_amount": 100, "quantity": 1},
|
|
{"id":"order_item_2", "product_id": "prod_test", "variant_id": "var_test_2", "price_amount": 100, "quantity": 10}
|
|
]');
|
|
|
|
-- Verify that the order was created correctly
|
|
SELECT is(
|
|
(SELECT status FROM public.orders WHERE id = 'order_test'),
|
|
'pending',
|
|
'The order status should be pending'
|
|
);
|
|
|
|
-- Verify that the subscription items were created correctly
|
|
SELECT row_eq(
|
|
$$ select count(*) from order_items where order_id = 'order_test' $$,
|
|
row(2::bigint),
|
|
'The order items should be created'
|
|
);
|
|
|
|
-- Call the upsert_order function again to update the order
|
|
select public.upsert_order(tests.get_supabase_uid('primary_owner'), 'cus_test', 'order_test', 'succeeded', 'stripe', 100, 'usd', '[
|
|
{"id":"order_item_1", "product_id": "prod_test_2", "variant_id": "var_test", "price_amount": 100, "quantity": 10}
|
|
]');
|
|
|
|
-- Verify that the order was updated correctly
|
|
select is(
|
|
(select status FROM public.orders WHERE id = 'order_test'),
|
|
'succeeded',
|
|
'The order status should be succeeded'
|
|
);
|
|
|
|
select row_eq(
|
|
$$ select quantity from order_items where variant_id = 'var_test' $$,
|
|
row(10::int),
|
|
'The order items should be updated'
|
|
);
|
|
|
|
select is_empty(
|
|
$$ select * from order_items where id = 'order_item_2' $$,
|
|
'The order item should be deleted when the order is updated'
|
|
);
|
|
|
|
select row_eq(
|
|
$$ select product_id from order_items where id = 'order_item_1' $$,
|
|
row('prod_test_2'::text),
|
|
'The order item should be deleted when the order is updated'
|
|
);
|
|
|
|
select makerkit.authenticate_as('primary_owner');
|
|
|
|
-- account can read their own subscription
|
|
select isnt_empty(
|
|
$$ select 1 from orders where id = 'order_test' $$,
|
|
'The account can read their own order'
|
|
);
|
|
|
|
select isnt_empty(
|
|
$$ select * from order_items where order_id = 'order_test' $$,
|
|
'The account can read their own orders items'
|
|
);
|
|
|
|
-- foreigners
|
|
select tests.create_supabase_user('foreigner');
|
|
select makerkit.authenticate_as('foreigner');
|
|
|
|
-- account cannot read other's subscription
|
|
select is_empty(
|
|
$$ select 1 from orders where id = 'order_test' $$,
|
|
'The account cannot read the other account orders'
|
|
);
|
|
|
|
select is_empty(
|
|
$$ select 1 from order_items where order_id = 'order_test' $$,
|
|
'The account cannot read the other account order items'
|
|
);
|
|
|
|
-- Finish the tests and clean up
|
|
select * from finish();
|
|
|
|
rollback;
|
|
|