Merge branch 'main' into feature/203-demo-notice-wording
Linting / lint (pull_request) Successful in 1m55s
SonarQube Analysis / sonarqube (pull_request) Failing after 16m55s

This commit is contained in:
2026-08-28 14:05:07 -05:00
11 changed files with 241 additions and 27 deletions
+16
View File
@@ -239,6 +239,22 @@ export function parseItemFilters(query: Record<string, unknown>): ItemFilters {
// Returns WHERE fragments plus their parameters, with placeholders numbered // Returns WHERE fragments plus their parameters, with placeholders numbered
// from `startIndex` so the caller can splice these in after its own params. // from `startIndex` so the caller can splice these in after its own params.
// //
// SECURITY INVARIANT, and it is load-bearing. Both callers splice these clauses
// straight into query text — admin.ts as `${ADMIN_ITEM_SELECT} ${where}`, and
// items.ts as `${PUBLIC_ITEM_SELECT} WHERE ${where}`, which is reachable
// without signing in. So the only thing that may ever be interpolated into a
// string pushed onto `clauses` is a placeholder index: `$${next}`, or
// `$${next + 1}` in the tags clause. Every value goes onto `params` and is
// bound by the driver. Interpolating a filter value here would be SQL injection
// at both call sites, and `parseItemFilters` refusing malformed input is not
// what prevents it — these literals would be safe with no parser at all.
//
// Stated here rather than only at the call sites because this is where the rule
// is enforced and where a seventh clause would be added. SonarQube raised S2077
// on the call sites and they are marked Reviewed/Safe (#180); that marking does
// not re-raise when this file changes, so this comment and the two tests over
// it are what stand between that edit and a live injection. See #202.
//
// `favoritesCustomerId` is required rather than optional so a caller has to say // `favoritesCustomerId` is required rather than optional so a caller has to say
// whose favorites it means, even when it means nobody's. Both routes already // whose favorites it means, even when it means nobody's. Both routes already
// reject a favorites filter they cannot satisfy, so reaching the throw below is // reject a favorites filter they cannot satisfy, so reaching the throw below is
+20
View File
@@ -340,6 +340,18 @@ router.get('/items', asyncRoute(async (req: Request, res: Response) => {
return res.status(400).json({ error: 'favorites is not a valid inventory filter' }); return res.status(400).json({ error: 'favorites is not a valid inventory filter' });
} }
// S2077 flags every query below that assembles its SQL as a template literal,
// and this is the one where that is more than a formality: `where` really is
// built at run time. What makes it safe is that buildItemFilterSql composes
// only string literals written in itemFilters.ts. The only interpolations
// inside any of them are placeholder indices — `$${next}`, and `$${next + 1}`
// in the tags clause — numbers, seeded from the startIndex argument and
// incremented locally. Neither is ever derived from a filter value.
//
// So a caller chooses which of six fixed fragments are joined, and supplies
// every value in `params`, and neither of those becomes SQL. parseItemFilters
// rejects malformed input above, but that is defence in depth rather than the
// reason this holds — the clause literals would be safe without it.
const { clauses, params } = buildItemFilterSql(filters, 1, null); const { clauses, params } = buildItemFilterSql(filters, 1, null);
const where = clauses.length ? `WHERE ${clauses.join(' AND ')}` : ''; const where = clauses.length ? `WHERE ${clauses.join(' AND ')}` : '';
const { rows } = await pool.query<AdminItemRow>(`${ADMIN_ITEM_SELECT} ${where} ORDER BY i.created_at DESC`, params); const { rows } = await pool.query<AdminItemRow>(`${ADMIN_ITEM_SELECT} ${where} ORDER BY i.created_at DESC`, params);
@@ -367,6 +379,11 @@ router.post('/items', uploadImages, asyncRoute(async (req: Request, res: Respons
await setItemTags(client, item.id, await resolveTagIds(client, tagNames)); await setItemTags(client, item.id, await resolveTagIds(client, tagNames));
} }
await client.query('COMMIT'); await client.query('COMMIT');
// S2077 again, and here the template is a module constant plus a literal:
// ADMIN_ITEM_SELECT interpolates nothing of its own, and the id is bound as
// $1 rather than formatted in. Same shape as the update route below, where
// the bound value is caller-supplied — which is precisely why it is a
// parameter.
const { rows: full } = await pool.query<AdminItemRow>(`${ADMIN_ITEM_SELECT} WHERE i.id = $1`, [item.id]); const { rows: full } = await pool.query<AdminItemRow>(`${ADMIN_ITEM_SELECT} WHERE i.id = $1`, [item.id]);
res.json(requireRow(full, 'the item just inserted')); res.json(requireRow(full, 'the item just inserted'));
} catch (err) { } catch (err) {
@@ -415,6 +432,9 @@ router.put('/items/:id', uploadImages, asyncRoute(async (req: Request, res: Resp
await insertItemImages(client, Number(req.params.id), files, nextSort); await insertItemImages(client, Number(req.params.id), files, nextSort);
} }
await client.query('COMMIT'); await client.query('COMMIT');
// S2077, the same constant-plus-$1 shape as the create route above.
// req.params.id is caller-controlled and goes through the driver as a bound
// parameter; it never reaches the query text.
const { rows: full } = await pool.query<AdminItemRow>(`${ADMIN_ITEM_SELECT} WHERE i.id = $1`, [req.params.id]); const { rows: full } = await pool.query<AdminItemRow>(`${ADMIN_ITEM_SELECT} WHERE i.id = $1`, [req.params.id]);
res.json(full[0]); res.json(full[0]);
} catch (err) { } catch (err) {
+13 -2
View File
@@ -246,9 +246,20 @@ router.post('/demo/purchase', requireCustomer, asyncRoute(async (req: Request, r
const opened = await openCheckout(client, req.customerId as number, shippingAddressId, 'demo', `demo-${Date.now()}`); const opened = await openCheckout(client, req.customerId as number, shippingAddressId, 'demo', `demo-${Date.now()}`);
if (!opened.ok) { await client.query('ROLLBACK'); return res.status(400).json({ error: opened.error }); } if (!opened.ok) { await client.query('ROLLBACK'); return res.status(400).json({ error: opened.error }); }
const sold = await completeCheckout(client, opened.checkoutId, 'demo', null, { demo: true }); await completeCheckout(client, opened.checkoutId, 'demo', null, { demo: true });
await client.query('COMMIT'); await client.query('COMMIT');
await notifyFavoritersOfSale(sold.itemIds, sold.buyerId);
// Deliberately no notifyFavoritersOfSale here, unlike the PayPal capture and
// webhook paths above. A demo purchase is not a sale. The item really is
// marked sold, so the storefront stays truthful about availability, but the
// `favoriteSold` copy says the item "has been sold to another customer" and
// "will not be restocked" — and both are false when nobody bought anything.
//
// This is the only outbound consequence a demo purchase has. Everything else
// it does is visible to the person who clicked, who has been told it is a
// demo (#195, #203); these recipients never saw the cart and have no way to
// know. While production runs the demo interim (#191) they are real
// customers on real SMTP. See #206.
res.json({ status: 'completed' }); res.json({ status: 'completed' });
} catch (err) { } catch (err) {
await client.query('ROLLBACK'); await client.query('ROLLBACK');
+8
View File
@@ -73,6 +73,14 @@ router.get('/', asyncRoute(async (req: Request, res: Response) => {
}; };
const { clauses, params } = buildItemFilterSql(effectiveFilters, 1, req.customerId ?? null); const { clauses, params } = buildItemFilterSql(effectiveFilters, 1, req.customerId ?? null);
// The same construct SonarQube flagged as S2077 in admin.ts and which is
// marked Reviewed/Safe there (#180) — and this is the copy reachable without
// signing in, so it is worth saying here too rather than relying on the
// reader having seen the other one. It holds for the same reason: the clauses
// are literals from buildItemFilterSql carrying only placeholder indices, and
// EXCLUDE_PENDING is a module constant. Joining with AND cannot weaken
// EXCLUDE_PENDING either, because no fragment contains a top-level OR for the
// join to re-associate against.
const where = [EXCLUDE_PENDING, ...clauses].join(' AND '); const where = [EXCLUDE_PENDING, ...clauses].join(' AND ');
const { rows } = await pool.query<PublicItemRow>( const { rows } = await pool.query<PublicItemRow>(
`${PUBLIC_ITEM_SELECT} WHERE ${where} ORDER BY i.created_at DESC`, `${PUBLIC_ITEM_SELECT} WHERE ${where} ORDER BY i.created_at DESC`,
@@ -7,6 +7,7 @@ jest.mock('../../src/mailer', () => ({
sendMail: jest.fn().mockResolvedValue(undefined) sendMail: jest.fn().mockResolvedValue(undefined)
})); }));
import { sendMail } from '../../src/mailer'; import { sendMail } from '../../src/mailer';
import { notifyFavoritersOfSale } from '../../src/favoriteAlerts';
const sentMail = sendMail as jest.MockedFunction<typeof sendMail>; const sentMail = sendMail as jest.MockedFunction<typeof sendMail>;
beforeEach(async () => { beforeEach(async () => {
@@ -168,36 +169,69 @@ describe('notifying when a favorited item sells', () => {
expect(purchase.status).toBeLessThan(400); expect(purchase.status).toBeLessThan(400);
} }
// The demo route deliberately notifies nobody (#206) and the PayPal path has
// no integration coverage, so the tests below call the notifier the way the
// PayPal capture and webhook routes do — after the purchase, with the sold
// ids and the buyer. That keeps them about *who* gets told, which is what
// they were testing all along; whether the demo route itself notifies is
// asserted separately, above.
async function buyThenNotify(
agent: ReturnType<typeof request.agent>,
itemId: number,
buyerId: number | null
) {
await buyViaDemo(agent, itemId);
await notifyFavoritersOfSale([itemId], buyerId);
}
it('emails a favoriter who opted in', async () => { it('emails a favoriter who opted in', async () => {
const itemId = await createItem('Wanted item'); const itemId = await createItem('Wanted item');
const { agent: watcher } = await register('watcher@example.com'); const { agent: watcher } = await register('watcher@example.com');
await watcher.post(`/api/customers/me/favorites/${itemId}`); await watcher.post(`/api/customers/me/favorites/${itemId}`);
await watcher.put('/api/customers/me/favorite-alerts').send({ enabled: true }); await watcher.put('/api/customers/me/favorite-alerts').send({ enabled: true });
const { agent: buyer } = await register('buyer@example.com'); const { agent: buyer, id: buyerId } = await register('buyer@example.com');
await buyViaDemo(buyer, itemId); await buyThenNotify(buyer, itemId, buyerId);
expect(soldNotificationsTo()).toEqual(['watcher@example.com']); expect(soldNotificationsTo()).toEqual(['watcher@example.com']);
}); });
// A demo purchase is not a sale. The item really is marked sold, so the
// storefront is telling the truth about availability, but nobody bought
// anything and nobody is shipping anything — and while production runs the
// demo interim (#191) this mail reaches real favoriters through real SMTP,
// telling them an item "has been sold to another customer" and "will not be
// restocked". Both are false. See #206.
it('sends nothing when the purchase was a demo', async () => {
const itemId = await createItem('Demo bought');
const { agent: watcher } = await register('watcher-demo@example.com');
await watcher.post(`/api/customers/me/favorites/${itemId}`);
await watcher.put('/api/customers/me/favorite-alerts').send({ enabled: true });
const { agent: buyer } = await register('demo-buyer@example.com');
await buyViaDemo(buyer, itemId);
expect(soldNotificationsTo()).toEqual([]);
});
it('does not email a favoriter who never opted in', async () => { it('does not email a favoriter who never opted in', async () => {
const itemId = await createItem('Wanted item'); const itemId = await createItem('Wanted item');
const { agent: watcher } = await register('silent@example.com'); const { agent: watcher } = await register('silent@example.com');
await watcher.post(`/api/customers/me/favorites/${itemId}`); await watcher.post(`/api/customers/me/favorites/${itemId}`);
const { agent: buyer } = await register('buyer2@example.com'); const { agent: buyer, id: buyerId } = await register('buyer2@example.com');
await buyViaDemo(buyer, itemId); await buyThenNotify(buyer, itemId, buyerId);
expect(soldNotificationsTo()).toEqual([]); expect(soldNotificationsTo()).toEqual([]);
}); });
it('does not tell the buyer their own purchase is unavailable', async () => { it('does not tell the buyer their own purchase is unavailable', async () => {
const itemId = await createItem('Self bought'); const itemId = await createItem('Self bought');
const { agent: buyer } = await register('selfbuy@example.com'); const { agent: buyer, id: buyerId } = await register('selfbuy@example.com');
await buyer.post(`/api/customers/me/favorites/${itemId}`); await buyer.post(`/api/customers/me/favorites/${itemId}`);
await buyer.put('/api/customers/me/favorite-alerts').send({ enabled: true }); await buyer.put('/api/customers/me/favorite-alerts').send({ enabled: true });
await buyViaDemo(buyer, itemId); await buyThenNotify(buyer, itemId, buyerId);
expect(soldNotificationsTo()).toEqual([]); expect(soldNotificationsTo()).toEqual([]);
}); });
@@ -210,10 +244,10 @@ describe('notifying when a favorited item sells', () => {
await agent.put('/api/customers/me/favorite-alerts').send({ enabled: true }); await agent.put('/api/customers/me/favorite-alerts').send({ enabled: true });
} }
const { agent: buyer } = await register('c@example.com'); const { agent: buyer, id: buyerId } = await register('c@example.com');
await buyer.post(`/api/customers/me/favorites/${itemId}`); await buyer.post(`/api/customers/me/favorites/${itemId}`);
await buyer.put('/api/customers/me/favorite-alerts').send({ enabled: true }); await buyer.put('/api/customers/me/favorite-alerts').send({ enabled: true });
await buyViaDemo(buyer, itemId); await buyThenNotify(buyer, itemId, buyerId);
expect(soldNotificationsTo().sort()).toEqual(['a@example.com', 'b@example.com']); expect(soldNotificationsTo().sort()).toEqual(['a@example.com', 'b@example.com']);
}); });
+49
View File
@@ -256,3 +256,52 @@ describe('buildItemFilterSql', () => {
expect(sql).toContain('$3'); expect(sql).toContain('$3');
}); });
}); });
// Both callers splice these clauses straight into query text, so a value
// reaching the clause string is SQL injection rather than a style problem. The
// comment on buildItemFilterSql says so; these two make it fail a build instead
// of relying on someone reading it. See #202, and #180 for the S2077 review.
describe('buildItemFilterSql keeps every value out of the SQL text', () => {
// Deliberately built by hand rather than through parseItemFilters, because
// the claim is that the clause literals are safe with no parser at all. These
// values could never survive parsing, which is the point: the parser is
// defence in depth, not the reason this holds.
const HOSTILE = "1); DROP TABLE items; --";
const hostileFilters = {
categoryIds: [HOSTILE],
tagIds: [HOSTILE],
minPriceCents: HOSTILE,
maxPriceCents: HOSTILE,
status: [HOSTILE],
favoritesOnly: true
} as unknown as Parameters<typeof buildItemFilterSql>[0];
it('never lets a filter value reach a clause, even one the parser would reject', () => {
const built = buildItemFilterSql(hostileFilters, 1, HOSTILE as unknown as number);
const sql = built.clauses.join(' AND ');
expect(sql).not.toContain(HOSTILE);
expect(sql).not.toContain('DROP TABLE');
// Every value still arrives, bound, where it can do nothing.
expect(built.params).toContain(HOSTILE);
});
// The structural version of the same claim, and the one that catches a value
// which happens not to look hostile: the SQL text must not depend on the
// values at all. Two disjoint sets of inputs, byte-identical clauses.
it('produces byte-identical SQL for two completely different filter sets', () => {
const a = buildItemFilterSql(
parseItemFilters({ category: '4', tags: '7,8', min_price: '100', max_price: '900', status: 'sold' }),
1,
42
);
const b = buildItemFilterSql(
parseItemFilters({ category: '99', tags: '11,12', min_price: '5', max_price: '6', status: 'available' }),
1,
7
);
expect(a.clauses).toEqual(b.clauses);
expect(a.params).not.toEqual(b.params);
});
});
+4 -2
View File
@@ -57,8 +57,10 @@
# (#190). Everything else is written out, so there is one place to look and one # (#190). Everything else is written out, so there is one place to look and one
# thing that can be wrong. # thing that can be wrong.
# #
# Required stack environment variables. All must be set in Portainer for this # The stack environment variables this file reads. Each entry says whether it is
# stack. All are secrets except DEMO_MODE: # required and when — there is no blanket rule, because three are unused while
# DEMO_MODE is `true`, three are optional, and DEMO_MODE and SMTP_FROM are not
# secrets at all:
# #
# DEMO_MODE `true` or `false`, exactly. Whether real payments are # DEMO_MODE `true` or `false`, exactly. Whether real payments are
# taken. Not a secret — it is here rather than written # taken. Not a secret — it is here rather than written
+23 -5
View File
@@ -60,9 +60,13 @@ Everything here is lost when the stack is deleted, and the rollback in step 8 is
**The stack name**, exactly as Portainer shows it. If it is not `redefined-designs`, note that — the new stack must be created with that name, because the stack name becomes the compose project name and reusing QA's would make Compose reconcile the two against each other. **The stack name**, exactly as Portainer shows it. If it is not `redefined-designs`, note that — the new stack must be created with that name, because the stack name becomes the compose project name and reusing QA's would make Compose reconcile the two against each other.
**Every stack environment variable, name and value.** They belong to the stack, and deleting it discards them. This is the step whose omission is felt hardest: the compose file interpolates `DEMO_MODE`, `DB_PASSWORD`, `SMTP_USER`, `SMTP_PASSWORD`, `SMTP_FROM`, `ADMIN_GATE_SECRET`, `PAYPAL_CLIENT_ID`, `PAYPAL_CLIENT_SECRET` and `PAYPAL_WEBHOOK_ID`, and an unset one substitutes to an empty string rather than failing. A missing `DB_PASSWORD` cannot authenticate against its own data directory, and none of this is recoverable from anything in this repository. **Every stack environment variable, name and value.** They belong to the stack, and deleting it discards them. This is the step whose omission is felt hardest. The compose file interpolates thirteen names — `DEMO_MODE`, `DB_PASSWORD`, `SMTP_USER`, `SMTP_PASSWORD`, `SMTP_FROM`, `ADMIN_GATE_SECRET`, `PAYPAL_CLIENT_ID`, `PAYPAL_CLIENT_SECRET`, `PAYPAL_WEBHOOK_ID`, `USPS_CLIENT_ID`, `USPS_CLIENT_SECRET`, `UPLOADS_BASE_URL` and `BACKUP_PASSPHRASE` — and an unset one substitutes to an empty string rather than failing. None of it is recoverable from anything in this repository. Take everything the stack holds rather than working from this list; it is here to say how much there is, and it is checked against the file rather than from memory.
`DEMO_MODE` is the odd one out and the easiest to miss, because it is the only one that is not a secret. It must be exactly `true` or `false`. There is no default in the compose file, deliberately (#190) — a default would decide whether the shop takes money on the operator's behalf, silently, whichever way it pointed — so an unset `DEMO_MODE` refuses to boot rather than guessing. Production is `true` for now, the interim from #191; setting it to `false` is what restores real payments, and doing that without all three PayPal secrets present crash-loops the container. `USPS_CLIENT_ID` and `USPS_CLIENT_SECRET` deserve naming because losing them is the one failure here that is completely silent. Address validation is skipped when they are empty rather than failing, so checkout keeps working and quietly stops validating addresses. Nothing in step 7 catches it, and there is no crash loop to notice.
A missing `DB_PASSWORD` does not fail the way you would expect either: the app never reaches a connection attempt. It refuses at boot, and the message names `PGPASSWORD` rather than the variable you set, because the compose file injects it as `PGPASSWORD=${DB_PASSWORD}`. Grep the log for the name in the error, not the name in Portainer.
`DEMO_MODE` is the odd one out and the easiest to miss, because it is the only one that is a setting rather than a credential. It must be exactly `true` or `false`. There is no default in the compose file, deliberately (#190) — a default would decide whether the shop takes money on the operator's behalf, silently, whichever way it pointed — so an unset `DEMO_MODE` refuses to boot rather than guessing. Production is `true` for now, the interim from #191; setting it to `false` is what restores real payments, and doing that without all three PayPal secrets present crash-loops the container.
Copy them somewhere before you delete anything. Copy them somewhere before you delete anything.
@@ -221,14 +225,28 @@ Migration output must appear *before* `listening on 3000`, and `listening on 300
**What a crash loop looks like, and it is the likeliest outcome of a missed step 2.** A `[config] refusing to start` block, then the whole boot sequence again, repeating. **What a crash loop looks like, and it is the likeliest outcome of a missed step 2.** A `[config] refusing to start` block, then the whole boot sequence again, repeating.
While production is in the demo interim, the likeliest one is `DEMO_MODE` itself: Miss step 2 wholesale and it is two problems, led by a name you never typed:
```
[config] refusing to start — 2 problem(s) with the environment:
[config] - PGPASSWORD is required and is not set.
[config] - DEMO_MODE is required and must be exactly 'true' or 'false'. It decides whether real payments are taken, so it has to be stated rather than inherited.
```
Carry `DB_PASSWORD` across and only `DEMO_MODE` is left, which is the single likeliest form during the demo interim:
``` ```
[config] refusing to start — 1 problem(s) with the environment: [config] refusing to start — 1 problem(s) with the environment:
[config] - DEMO_MODE is required and must be exactly 'true' or 'false'. [config] - DEMO_MODE is required and must be exactly 'true' or 'false'. It decides whether real payments are taken, so it has to be stated rather than inherited.
``` ```
The other form appears once `DEMO_MODE` is `false` and real payments are on: A value that was set but mistyped reads differently, and the quotes are the only thing that distinguishes `true ` with a trailing space from `true`:
```
[config] - DEMO_MODE must be exactly 'true' or 'false', but is 'True'. Anything else used to be read as demo mode, which meant a typo here quietly stopped the shop charging anyone.
```
The PayPal form appears once `DEMO_MODE` is `false` and real payments are on:
``` ```
[config] refusing to start — 3 problem(s) with the environment: [config] refusing to start — 3 problem(s) with the environment:
+27 -1
View File
@@ -38,7 +38,16 @@ const COLUMNS = [
dataIndex: 'status', dataIndex: 'status',
render: (v: string) => <Tag color={STATUS_COLORS[v]}>{v}</Tag> render: (v: string) => <Tag color={STATUS_COLORS[v]}>{v}</Tag>
}, },
{ title: 'Processor', dataIndex: 'processor' }, {
title: 'Processor',
dataIndex: 'processor',
// `demo` used to render as a raw column value, which is not an explanation:
// a customer has no reason to read it as "this did not happen", and the row
// was otherwise identical to a real one — real price, `completed` status,
// same neutral tag. The cart says it is a demo (#195, #203) for about three
// seconds; this is the record they come back to. See #205.
render: (v: string) => (v === 'demo' ? <Tag color="warning">Demo (not charged)</Tag> : v)
},
{ title: 'Date', dataIndex: 'created_at', render: (v: string) => new Date(v).toLocaleDateString() } { title: 'Date', dataIndex: 'created_at', render: (v: string) => new Date(v).toLocaleDateString() }
]; ];
@@ -69,6 +78,12 @@ function OrdersBody({ loading, error, orders, onRetry }: BodyProps) {
); );
} }
// Shown only when there is one to explain. The per-row tag says which order,
// this says what it means — a tag reading "Demo" still assumes the reader
// knows what a demo order is, and the thing they actually want to know is
// whether to expect a parcel.
const hasDemoOrder = orders.some(o => o.processor === 'demo');
if (orders.length === 0) { if (orders.length === 0) {
return ( return (
<Space direction="vertical" align="center" style={{ width: '100%', marginTop: 24 }}> <Space direction="vertical" align="center" style={{ width: '100%', marginTop: 24 }}>
@@ -79,6 +94,16 @@ function OrdersBody({ loading, error, orders, onRetry }: BodyProps) {
} }
return ( return (
<>
{hasDemoOrder && (
<Alert
type="warning"
showIcon
style={{ marginBottom: 16 }}
message="Some of these are demo orders"
description="A demo order is a pretend one: nothing was charged, and nothing will be shipped."
/>
)}
<Table <Table
rowKey="id" rowKey="id"
dataSource={orders} dataSource={orders}
@@ -88,6 +113,7 @@ function OrdersBody({ loading, error, orders, onRetry }: BodyProps) {
scroll={{ x: 'max-content' }} scroll={{ x: 'max-content' }}
columns={COLUMNS} columns={COLUMNS}
/> />
</>
); );
} }
+26
View File
@@ -66,6 +66,32 @@ test.describe('Demo mode says so to the customer', () => {
await expect(cart.checkoutButton).toHaveCount(0); await expect(cart.checkoutButton).toHaveCount(0);
}); });
// The toast is three seconds; this is the record the customer comes back to
// when they wonder where their item is. It showed `demo` as a raw value under
// a "Processor" heading, beside a real price and a neutral `completed` tag —
// nothing a customer would read as "this did not happen". See #205.
test('order history marks the demo order rather than showing it as a real one', async ({
page,
customer,
cart,
orders
}) => {
const name = `Demo h${uniqueSuffix()}`;
const item = await createItem(page.request, { name, price: '80' });
expect((await page.request.post(`/api/cart/items/${item.id}`)).status()).toBe(201);
expect((await page.request.post('/api/customers/me/addresses', { data: ADDRESS })).ok()).toBe(true);
await cart.goto();
await expect(cart.checkoutButton).toBeVisible({ timeout: 20000 });
await cart.checkoutButton.click();
await expect(page.getByText(/nothing was charged/i)).toBeVisible({ timeout: 20000 });
await orders.goto();
await expect(orders.demoOrderMarker).toBeVisible({ timeout: 20000 });
await expect(orders.demoNotice).toBeVisible();
});
test('the confirmation says nothing was charged', async ({ page, customer, cart }) => { test('the confirmation says nothing was charged', async ({ page, customer, cart }) => {
const name = `Demo p${uniqueSuffix()}`; const name = `Demo p${uniqueSuffix()}`;
const item = await createItem(page.request, { name, price: '80' }); const item = await createItem(page.request, { name, price: '80' });
+4
View File
@@ -14,6 +14,8 @@ export class OrdersPage {
readonly continueShoppingButton: Locator; readonly continueShoppingButton: Locator;
readonly backToShopButton: Locator; readonly backToShopButton: Locator;
readonly anyDialog: Locator; readonly anyDialog: Locator;
readonly demoNotice: Locator;
readonly demoOrderMarker: Locator;
constructor(private readonly page: Page) { constructor(private readonly page: Page) {
this.heading = page.getByRole('heading', { name: 'Order History' }); this.heading = page.getByRole('heading', { name: 'Order History' });
@@ -21,6 +23,8 @@ export class OrdersPage {
this.continueShoppingButton = page.getByRole('button', { name: 'Continue Shopping' }); this.continueShoppingButton = page.getByRole('button', { name: 'Continue Shopping' });
this.backToShopButton = page.getByRole('button', { name: 'Back to Shop' }); this.backToShopButton = page.getByRole('button', { name: 'Back to Shop' });
this.anyDialog = page.getByRole('dialog'); this.anyDialog = page.getByRole('dialog');
this.demoNotice = page.getByText('Some of these are demo orders');
this.demoOrderMarker = page.getByText('Demo (not charged)');
} }
async goto(): Promise<void> { async goto(): Promise<void> {