File size: 6,188 Bytes
97ee7cb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 | import { convexTest } from "convex-test";
import { afterEach, beforeEach, describe, expect, test, vi } from "vitest";
import schema from "../schema";
const modules = import.meta.glob("../**/*.ts");
// ---------------------------------------------------------------------------
// Regression tests for koala73/worldmonitor#3767
//
// The /api/telegram-pair-callback webhook MUST fail closed: requests are
// rejected unless they carry the `X-Telegram-Bot-Api-Secret-Token` header
// matching `TELEGRAM_WEBHOOK_SECRET`. The handler always returns HTTP 200
// (Telegram retries on non-200), so "rejected" is observed by asserting that
// the downstream `claimPairingToken` mutation never runs — i.e. a seeded
// pairing token's `used` flag stays false.
// ---------------------------------------------------------------------------
const VALID_SECRET = "test-telegram-secret";
const USER_ID = "user-telegram-test";
const PAIRING_TOKEN = "abcdefghijklmnopqrstuvwxyz0123456789ABCDEFG"; // 43 chars, matches /^[A-Za-z0-9_-]{40,50}$/
async function seedPairingToken(t: ReturnType<typeof convexTest>) {
await t.run(async (ctx) => {
await ctx.db.insert("entitlements", {
userId: USER_ID,
planKey: "pro_monthly",
features: {
tier: 1,
maxDashboards: 10,
apiAccess: true,
apiRateLimit: 1000,
prioritySupport: true,
exportFormats: ["json", "csv"],
},
validUntil: Date.now() + 30 * 24 * 60 * 60 * 1000,
updatedAt: Date.now(),
});
await ctx.db.insert("telegramPairingTokens", {
userId: USER_ID,
token: PAIRING_TOKEN,
expiresAt: Date.now() + 15 * 60 * 1000, // 15 min
used: false,
});
});
}
async function tokenUsed(t: ReturnType<typeof convexTest>): Promise<boolean> {
return await t.run(async (ctx) => {
const rec = await ctx.db
.query("telegramPairingTokens")
.withIndex("by_token", (q) => q.eq("token", PAIRING_TOKEN))
.unique();
return rec?.used === true;
});
}
function makeStartPayload() {
return {
message: {
chat: { type: "private", id: 12345 },
text: `/start ${PAIRING_TOKEN}`,
date: Math.floor(Date.now() / 1000),
},
};
}
describe("HTTP route /api/telegram-pair-callback (security #3767)", () => {
beforeEach(() => {
// Stub outbound Telegram sendMessage so the happy-path doesn't make a
// real network call when the guard passes.
vi.stubGlobal(
"fetch",
vi.fn(async () => new Response("{}", { status: 200 })),
);
process.env.TELEGRAM_BOT_TOKEN = "test-bot-token";
});
afterEach(() => {
vi.unstubAllGlobals();
delete process.env.TELEGRAM_WEBHOOK_SECRET;
delete process.env.TELEGRAM_BOT_TOKEN;
});
test("rejects request with NO secret header (handler not invoked)", async () => {
process.env.TELEGRAM_WEBHOOK_SECRET = VALID_SECRET;
const t = convexTest(schema, modules);
await seedPairingToken(t);
const res = await t.fetch("/api/telegram-pair-callback", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(makeStartPayload()),
});
expect(res.status).toBe(200); // always 200 to suppress Telegram retries
expect(await tokenUsed(t)).toBe(false); // but handler did NOT run
});
test("rejects request with WRONG secret header (handler not invoked)", async () => {
process.env.TELEGRAM_WEBHOOK_SECRET = VALID_SECRET;
const t = convexTest(schema, modules);
await seedPairingToken(t);
const res = await t.fetch("/api/telegram-pair-callback", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-Telegram-Bot-Api-Secret-Token": "wrong-secret",
},
body: JSON.stringify(makeStartPayload()),
});
expect(res.status).toBe(200);
expect(await tokenUsed(t)).toBe(false);
});
test("rejects ALL requests when TELEGRAM_WEBHOOK_SECRET is unset", async () => {
// No env var set — even a request with a "matching" header (which the
// pre-fix code would have skipped the check on) must be rejected.
delete process.env.TELEGRAM_WEBHOOK_SECRET;
const t = convexTest(schema, modules);
await seedPairingToken(t);
const resNoHeader = await t.fetch("/api/telegram-pair-callback", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify(makeStartPayload()),
});
expect(resNoHeader.status).toBe(200);
expect(await tokenUsed(t)).toBe(false);
const resWithHeader = await t.fetch("/api/telegram-pair-callback", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-Telegram-Bot-Api-Secret-Token": "anything",
},
body: JSON.stringify(makeStartPayload()),
});
expect(resWithHeader.status).toBe(200);
expect(await tokenUsed(t)).toBe(false);
});
test("happy path: matching secret header → handler runs, pairing token consumed", async () => {
process.env.TELEGRAM_WEBHOOK_SECRET = VALID_SECRET;
const t = convexTest(schema, modules);
await seedPairingToken(t);
const res = await t.fetch("/api/telegram-pair-callback", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-Telegram-Bot-Api-Secret-Token": VALID_SECRET,
},
body: JSON.stringify(makeStartPayload()),
});
expect(res.status).toBe(200);
expect(await tokenUsed(t)).toBe(true); // handler ran and claimed the token
});
test.each([null, [], "not-an-object", 42, true])(
"matching secret with non-object JSON (%j) → 200 without consuming token",
async (payload) => {
process.env.TELEGRAM_WEBHOOK_SECRET = VALID_SECRET;
const t = convexTest(schema, modules);
await seedPairingToken(t);
const res = await t.fetch("/api/telegram-pair-callback", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-Telegram-Bot-Api-Secret-Token": VALID_SECRET,
},
body: JSON.stringify(payload),
});
expect(res.status).toBe(200);
expect(await tokenUsed(t)).toBe(false);
},
);
});
|