File size: 10,469 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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
import { convexTest } from "convex-test";
import { describe, expect, test } from "vitest";
import schema from "../schema";
import { internal } from "../_generated/api";
import { filterPageForEligibility } from "../broadcast/_poolSelection";

const modules = import.meta.glob("../**/*.ts");

// ───────────────────────────────────────────────────────────────────────────
// Pure helper tests β€” no Convex runtime, no mocks
// ───────────────────────────────────────────────────────────────────────────

describe("filterPageForEligibility β€” pure helper", () => {
  test("gmail-only page, excludeNonEnglish=true β†’ all eligible", () => {
    const result = filterPageForEligibility({
      page: [
        { normalizedEmail: "a@gmail.com" },
        { normalizedEmail: "b@gmail.com" },
        { normalizedEmail: "c@gmail.com" },
      ],
      suppressedSet: new Set(),
      paidSet: new Set(),
      usersByEmail: new Map(),
      excludeNonEnglish: true,
    });
    expect(result.eligible).toEqual(["a@gmail.com", "b@gmail.com", "c@gmail.com"]);
    expect(result.pageEligibleCount).toBe(3);
    expect(result.pageExcludedTotal).toBe(0);
    expect(result.pageExcludedByLocale).toEqual({});
  });

  test("users-table beats heuristic β€” qq.com user with localePrimary=en kept", () => {
    const result = filterPageForEligibility({
      page: [
        { normalizedEmail: "us-based-cn@qq.com" },
        { normalizedEmail: "regular@qq.com" },
      ],
      suppressedSet: new Set(),
      paidSet: new Set(),
      usersByEmail: new Map([
        ["us-based-cn@qq.com", { localePrimary: "en" }],
      ]),
      excludeNonEnglish: true,
    });
    expect(result.eligible).toEqual(["us-based-cn@qq.com"]);
    expect(result.pageExcludedByLocale).toEqual({ zh: 1 });
    expect(result.pageExcludedTotal).toBe(1);
    expect(result.pageEligibleCount).toBe(2);
  });

  test("all locale-excluded β†’ 0 eligible, counts populated", () => {
    const result = filterPageForEligibility({
      page: [
        { normalizedEmail: "u1@qq.com" },
        { normalizedEmail: "u2@qq.com" },
        { normalizedEmail: "u3@yandex.ru" },
        { normalizedEmail: "u4@yandex.ru" },
        { normalizedEmail: "u5@yandex.ru" },
      ],
      suppressedSet: new Set(),
      paidSet: new Set(),
      usersByEmail: new Map(),
      excludeNonEnglish: true,
    });
    expect(result.eligible).toEqual([]);
    expect(result.pageExcludedByLocale).toEqual({ zh: 2, ru: 3 });
    expect(result.pageExcludedTotal).toBe(5);
    expect(result.pageEligibleCount).toBe(5);
  });

  test("suppressed beats locale β€” qq.com in suppressedSet not counted as locale-excluded", () => {
    const result = filterPageForEligibility({
      page: [
        { normalizedEmail: "bouncer@qq.com" },
        { normalizedEmail: "active@qq.com" },
      ],
      suppressedSet: new Set(["bouncer@qq.com"]),
      paidSet: new Set(),
      usersByEmail: new Map(),
      excludeNonEnglish: true,
    });
    expect(result.eligible).toEqual([]);
    expect(result.pageEligibleCount).toBe(1);
    expect(result.pageExcludedByLocale).toEqual({ zh: 1 });
    expect(result.pageExcludedTotal).toBe(1);
  });

  test("paid beats everything", () => {
    const result = filterPageForEligibility({
      page: [
        { normalizedEmail: "paid-user@gmail.com" },
        { normalizedEmail: "free-user@gmail.com" },
      ],
      suppressedSet: new Set(),
      paidSet: new Set(["paid-user@gmail.com"]),
      usersByEmail: new Map(),
      excludeNonEnglish: true,
    });
    expect(result.eligible).toEqual(["free-user@gmail.com"]);
    expect(result.pageEligibleCount).toBe(1);
  });

  test("already-stamped (proLaunchWave set) skipped", () => {
    const result = filterPageForEligibility({
      page: [
        { normalizedEmail: "stamped@gmail.com", proLaunchWave: "wave-3" },
        { normalizedEmail: "fresh@gmail.com" },
      ],
      suppressedSet: new Set(),
      paidSet: new Set(),
      usersByEmail: new Map(),
      excludeNonEnglish: true,
    });
    expect(result.eligible).toEqual(["fresh@gmail.com"]);
    expect(result.pageEligibleCount).toBe(1);
  });

  test("excludeNonEnglish=false β†’ non-English locales NOT excluded", () => {
    const result = filterPageForEligibility({
      page: [
        { normalizedEmail: "u@qq.com" },
        { normalizedEmail: "u@yandex.ru" },
      ],
      suppressedSet: new Set(),
      paidSet: new Set(),
      usersByEmail: new Map(),
      excludeNonEnglish: false,
    });
    expect(result.eligible).toEqual(["u@qq.com", "u@yandex.ru"]);
    expect(result.pageExcludedTotal).toBe(0);
  });

  test("empty page β†’ empty eligible, all counters zero", () => {
    const result = filterPageForEligibility({
      page: [],
      suppressedSet: new Set(),
      paidSet: new Set(),
      usersByEmail: new Map(),
      excludeNonEnglish: true,
    });
    expect(result.eligible).toEqual([]);
    expect(result.pageEligibleCount).toBe(0);
    expect(result.pageExcludedTotal).toBe(0);
  });

  test("CRITICAL β€” underfill regression: 800 gmail + 100 qq.com + 100 yandex.ru, only 800 gmail eligible", () => {
    // This is the round-2 Codex finding #1 regression test. Without
    // filter-before-reservoir, the action would have offered all 1000
    // emails to the reservoir, then post-sample-filtered, silently
    // shrinking a 1000-target wave to 800. With filter-before-reservoir
    // (pure helper here), eligible[] contains ONLY English-eligible
    // emails β€” the reservoir downstream samples from a clean pool.
    const page: Array<{ normalizedEmail: string; proLaunchWave?: string }> = [];
    for (let i = 0; i < 800; i++) page.push({ normalizedEmail: `g${i}@gmail.com` });
    for (let i = 0; i < 100; i++) page.push({ normalizedEmail: `q${i}@qq.com` });
    for (let i = 0; i < 100; i++) page.push({ normalizedEmail: `r${i}@yandex.ru` });

    const result = filterPageForEligibility({
      page,
      suppressedSet: new Set(),
      paidSet: new Set(),
      usersByEmail: new Map(),
      excludeNonEnglish: true,
    });

    expect(result.eligible.length).toBe(800);
    expect(result.eligible.every((e) => e.endsWith("@gmail.com"))).toBe(true);
    expect(result.pageExcludedByLocale).toEqual({ zh: 100, ru: 100 });
    expect(result.pageExcludedTotal).toBe(200);
    expect(result.pageEligibleCount).toBe(1000);
  });
});

// ───────────────────────────────────────────────────────────────────────────
// _getUsersByEmailPage internal query β€” wire-shape tests
// ───────────────────────────────────────────────────────────────────────────

describe("_getUsersByEmailPage β€” Convex wire shape", () => {
  test("returns Array<{normalizedEmail, localePrimary?}>; missing emails absent", async () => {
    const t = convexTest(schema, modules);
    const now = Date.now();
    await t.run(async (ctx) => {
      await ctx.db.insert("users", {
        userId: "u1",
        normalizedEmail: "a@gmail.com",
        localeTag: "en-US",
        localePrimary: "en",
        firstSeenAt: now,
        lastSeenAt: now,
      });
      await ctx.db.insert("users", {
        userId: "u2",
        normalizedEmail: "b@qq.com",
        localeTag: "zh-CN",
        localePrimary: "zh",
        firstSeenAt: now,
        lastSeenAt: now,
      });
      // u3 has NO normalizedEmail (e.g., phone-only signup)
      await ctx.db.insert("users", {
        userId: "u3",
        firstSeenAt: now,
        lastSeenAt: now,
      });
    });

    const result: Array<{ normalizedEmail: string; localePrimary?: string }> =
      await t.query(internal.broadcast.waveRuns._getUsersByEmailPage, {
        emails: ["a@gmail.com", "b@qq.com", "missing@example.com"],
      });

    expect(Array.isArray(result)).toBe(true);
    expect(result.length).toBe(2); // missing@example.com absent
    const map = new Map(result.map((r) => [r.normalizedEmail, r.localePrimary]));
    expect(map.get("a@gmail.com")).toBe("en");
    expect(map.get("b@qq.com")).toBe("zh");
    expect(map.has("missing@example.com")).toBe(false);
  });

  test("empty input β†’ empty array", async () => {
    const t = convexTest(schema, modules);
    const result = await t.query(
      internal.broadcast.waveRuns._getUsersByEmailPage,
      { emails: [] },
    );
    expect(result).toEqual([]);
  });

  test("1000-email page β€” parallel lookup contract holds (perf-shape regression)", async () => {
    // Locks in the bulk-page behavior expected from the Promise.all-based
    // implementation. Pre-fix: 1000 sequential awaits (~1s+ on prod
    // network); post-fix: parallel batch (~100ms typical). The test
    // doesn't assert wall-clock but DOES assert correctness over a
    // page-sized input where the implementation matters.
    const t = convexTest(schema, modules);
    const now = Date.now();
    await t.run(async (ctx) => {
      // Seed users for half of the emails (so we exercise both hit + miss paths)
      for (let i = 0; i < 500; i++) {
        await ctx.db.insert("users", {
          userId: `u-${i}`,
          normalizedEmail: `bulk-${i}@gmail.com`,
          localeTag: i % 3 === 0 ? "zh-CN" : "en-US",
          localePrimary: i % 3 === 0 ? "zh" : "en",
          firstSeenAt: now,
          lastSeenAt: now,
        });
      }
    });
    const inputEmails: string[] = [];
    for (let i = 0; i < 1000; i++) inputEmails.push(`bulk-${i}@gmail.com`);

    const result = await t.query(
      internal.broadcast.waveRuns._getUsersByEmailPage,
      { emails: inputEmails },
    );

    // Only the seeded half match.
    expect(result.length).toBe(500);
    const map = new Map(result.map((r) => [r.normalizedEmail, r.localePrimary]));
    expect(map.get("bulk-0@gmail.com")).toBe("zh");
    expect(map.get("bulk-1@gmail.com")).toBe("en");
    expect(map.has("bulk-501@gmail.com")).toBe(false); // unseeded
  });
});