backend-manager 5.8.2 → 5.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,484 @@
1
+ /**
2
+ * Test: content/blog-auto-publisher
3
+ * Tests for the blog-auto-publisher cron: source type detection,
4
+ * feed processing, Firestore tracking, hash determinism, and source resolution.
5
+ *
6
+ * Run: npx mgr test helpers/content/blog-auto-publisher
7
+ *
8
+ * Pure-function tests for exported utilities (contentSourceHash, isURL). Feed
9
+ * processing and Firestore tracking tests run against the real emulator.
10
+ */
11
+ const path = require('path');
12
+ const publisherPath = path.resolve(__dirname, '../../../src/manager/events/cron/daily/blog-auto-publisher.js');
13
+ const { contentSourceHash, isURL } = require(publisherPath);
14
+
15
+ // --- Sample feed XML for testing ---
16
+ const SAMPLE_RSS = `<?xml version="1.0"?>
17
+ <rss version="2.0">
18
+ <channel>
19
+ <title>Test Feed</title>
20
+ <item>
21
+ <guid>feed-item-1</guid>
22
+ <title>Feed Article One</title>
23
+ <link>https://example.com/article-1</link>
24
+ <description>Description of article one.</description>
25
+ </item>
26
+ <item>
27
+ <guid>feed-item-2</guid>
28
+ <title>Feed Article Two</title>
29
+ <link>https://example.com/article-2</link>
30
+ <description>Description of article two.</description>
31
+ </item>
32
+ <item>
33
+ <guid>feed-item-3</guid>
34
+ <title>Feed Article Three</title>
35
+ <link>https://example.com/article-3</link>
36
+ <description>Description of article three.</description>
37
+ </item>
38
+ </channel>
39
+ </rss>`;
40
+
41
+ module.exports = {
42
+ description: 'content/blog-auto-publisher',
43
+ type: 'group',
44
+
45
+ tests: [
46
+ // ============================
47
+ // SOURCE TYPE DETECTION (isURL)
48
+ // ============================
49
+ {
50
+ name: 'isURL-detects-http-url',
51
+ async run({ assert }) {
52
+ assert.equal(isURL('https://example.com/page'), true);
53
+ assert.equal(isURL('http://example.com'), true);
54
+ },
55
+ },
56
+
57
+ {
58
+ name: 'isURL-rejects-non-urls',
59
+ async run({ assert }) {
60
+ assert.equal(isURL('$brand'), false);
61
+ assert.equal(isURL('Write about AI'), false);
62
+ assert.equal(isURL('$feed:https://example.com/feed'), false);
63
+ },
64
+ },
65
+
66
+ {
67
+ name: 'isURL-rejects-empty-and-null',
68
+ async run({ assert }) {
69
+ assert.equal(isURL(''), false);
70
+ assert.equal(isURL(null), false);
71
+ assert.equal(isURL(undefined), false);
72
+ },
73
+ },
74
+
75
+ // ============================
76
+ // $feed: PREFIX DETECTION
77
+ // ============================
78
+ {
79
+ name: 'feed-prefix-detected-correctly',
80
+ async run({ assert }) {
81
+ const source = '$feed:https://techcrunch.com/feed/';
82
+ assert.equal(source.startsWith('$feed:'), true, '$feed: prefix detected');
83
+
84
+ const feedUrl = source.slice('$feed:'.length);
85
+ assert.equal(feedUrl, 'https://techcrunch.com/feed/', 'URL extracted after prefix');
86
+ },
87
+ },
88
+
89
+ {
90
+ name: 'feed-prefix-not-confused-with-brand',
91
+ async run({ assert }) {
92
+ assert.equal('$brand'.startsWith('$feed:'), false);
93
+ },
94
+ },
95
+
96
+ {
97
+ name: 'feed-prefix-not-confused-with-parent',
98
+ async run({ assert }) {
99
+ assert.equal('$parent'.startsWith('$feed:'), false);
100
+ },
101
+ },
102
+
103
+ {
104
+ name: 'feed-prefix-not-confused-with-plain-url',
105
+ async run({ assert }) {
106
+ assert.equal('https://example.com'.startsWith('$feed:'), false);
107
+ },
108
+ },
109
+
110
+ {
111
+ name: 'feed-prefix-not-confused-with-text',
112
+ async run({ assert }) {
113
+ assert.equal('Write about technology'.startsWith('$feed:'), false);
114
+ },
115
+ },
116
+
117
+ // ============================
118
+ // CONTENT SOURCE HASH
119
+ // ============================
120
+ {
121
+ name: 'contentSourceHash-is-deterministic',
122
+ async run({ assert }) {
123
+ const hash1 = contentSourceHash('$feed:https://example.com/feed', 'item-123');
124
+ const hash2 = contentSourceHash('$feed:https://example.com/feed', 'item-123');
125
+ assert.equal(hash1, hash2, 'same input produces same hash');
126
+ },
127
+ },
128
+
129
+ {
130
+ name: 'contentSourceHash-different-for-different-items',
131
+ async run({ assert }) {
132
+ const hash1 = contentSourceHash('$feed:https://example.com/feed', 'item-1');
133
+ const hash2 = contentSourceHash('$feed:https://example.com/feed', 'item-2');
134
+ assert.notEqual(hash1, hash2, 'different items produce different hashes');
135
+ },
136
+ },
137
+
138
+ {
139
+ name: 'contentSourceHash-different-for-different-origins',
140
+ async run({ assert }) {
141
+ const hash1 = contentSourceHash('$feed:https://example.com/feed-a', 'item-1');
142
+ const hash2 = contentSourceHash('$feed:https://example.com/feed-b', 'item-1');
143
+ assert.notEqual(hash1, hash2, 'same item ID with different origins produces different hash');
144
+ },
145
+ },
146
+
147
+ {
148
+ name: 'contentSourceHash-different-for-different-source-types',
149
+ async run({ assert }) {
150
+ const hash1 = contentSourceHash('$parent', 'source-1');
151
+ const hash2 = contentSourceHash('$feed:https://example.com/feed', 'source-1');
152
+ assert.notEqual(hash1, hash2, '$parent and $feed with same URL produce different hash');
153
+ },
154
+ },
155
+
156
+ {
157
+ name: 'contentSourceHash-is-20-chars',
158
+ async run({ assert }) {
159
+ const hash = contentSourceHash('$feed:https://example.com/feed', 'item-123');
160
+ assert.equal(hash.length, 20, 'hash is 20 hex chars');
161
+ },
162
+ },
163
+
164
+ {
165
+ name: 'contentSourceHash-is-hex-only',
166
+ async run({ assert }) {
167
+ const hash = contentSourceHash('$feed:https://example.com/feed', 'item-123');
168
+ assert.ok(/^[0-9a-f]+$/.test(hash), 'hash contains only hex characters');
169
+ },
170
+ },
171
+
172
+ // ============================
173
+ // FIRESTORE TRACKING (emulator)
174
+ // ============================
175
+ {
176
+ name: 'trackContentSource-writes-correct-schema',
177
+ async run({ assert, admin }) {
178
+ if (!admin) {
179
+ return assert.ok(true, 'skipped: no emulator');
180
+ }
181
+
182
+ const { trackContentSource } = require(publisherPath);
183
+ const origin = '$feed:https://test-feed.com/rss';
184
+ const url = 'https://test-feed.com/article-1';
185
+ const docId = contentSourceHash(origin, url);
186
+
187
+ await trackContentSource(admin, {
188
+ url,
189
+ origin,
190
+ feedUrl: 'https://test-feed.com/rss',
191
+ itemId: 'test-item-1',
192
+ itemTitle: 'Test Article',
193
+ usedBy: 'blog',
194
+ brandId: 'test-brand',
195
+ postUrl: 'https://test-brand.com/blog/test-article',
196
+ postSlug: 'test-article',
197
+ });
198
+
199
+ const doc = await admin.firestore().doc(`content-sources/${docId}`).get();
200
+ assert.ok(doc.exists, 'tracking doc created');
201
+
202
+ const data = doc.data();
203
+ assert.equal(data.url, url);
204
+ assert.equal(data.origin, origin);
205
+ assert.equal(data.feedUrl, 'https://test-feed.com/rss');
206
+ assert.equal(data.itemId, 'test-item-1');
207
+ assert.equal(data.itemTitle, 'Test Article');
208
+ assert.equal(data.usedBy, 'blog');
209
+ assert.equal(data.brandId, 'test-brand');
210
+ assert.equal(data.postUrl, 'https://test-brand.com/blog/test-article');
211
+ assert.equal(data.postSlug, 'test-article');
212
+ assert.ok(data.metadata, 'has metadata object');
213
+ assert.ok(data.metadata.created, 'has metadata.created');
214
+ assert.ok(data.metadata.updated, 'has metadata.updated');
215
+ assert.equal(typeof data.metadata.created.timestamp, 'string', 'created.timestamp is ISO string');
216
+ assert.equal(typeof data.metadata.created.timestampUNIX, 'number', 'created.timestampUNIX is number');
217
+ assert.equal(typeof data.metadata.updated.timestamp, 'string', 'updated.timestamp is ISO string');
218
+ assert.equal(typeof data.metadata.updated.timestampUNIX, 'number', 'updated.timestampUNIX is number');
219
+ },
220
+ },
221
+
222
+ {
223
+ name: 'trackContentSource-tracks-newsletter-usage',
224
+ async run({ assert, admin }) {
225
+ if (!admin) {
226
+ return assert.ok(true, 'skipped: no emulator');
227
+ }
228
+
229
+ const { trackContentSource } = require(publisherPath);
230
+ const origin = '$parent';
231
+ const url = 'https://parent-server.com/source-42';
232
+ const docId = contentSourceHash(origin, url);
233
+
234
+ await trackContentSource(admin, {
235
+ url,
236
+ origin,
237
+ itemId: 'source-42',
238
+ itemTitle: 'Newsletter Source',
239
+ usedBy: 'newsletter',
240
+ brandId: 'test-brand',
241
+ });
242
+
243
+ const doc = await admin.firestore().doc(`content-sources/${docId}`).get();
244
+ assert.ok(doc.exists, 'tracking doc created for newsletter');
245
+
246
+ const data = doc.data();
247
+ assert.equal(data.usedBy, 'newsletter', 'usedBy is newsletter');
248
+ assert.equal(data.origin, '$parent', 'origin is $parent');
249
+ },
250
+ },
251
+
252
+ {
253
+ name: 'getProcessedItemIds-returns-tracked-ids',
254
+ async run({ assert, admin }) {
255
+ if (!admin) {
256
+ return assert.ok(true, 'skipped: no emulator');
257
+ }
258
+
259
+ const { getProcessedItemIds, trackContentSource } = require(publisherPath);
260
+ const feedUrl = 'https://processed-test.com/rss';
261
+ const origin = `$feed:${feedUrl}`;
262
+
263
+ // Track two items
264
+ await trackContentSource(admin, {
265
+ url: 'https://processed-test.com/a1',
266
+ origin,
267
+ feedUrl,
268
+ itemId: 'proc-1',
269
+ itemTitle: 'Article 1',
270
+ usedBy: 'blog',
271
+ brandId: 'test-brand',
272
+ });
273
+ await trackContentSource(admin, {
274
+ url: 'https://processed-test.com/a2',
275
+ origin,
276
+ feedUrl,
277
+ itemId: 'proc-2',
278
+ itemTitle: 'Article 2',
279
+ usedBy: 'blog',
280
+ brandId: 'test-brand',
281
+ });
282
+
283
+ const ids = await getProcessedItemIds(admin, feedUrl);
284
+ assert.ok(ids.has('proc-1'), 'first item tracked');
285
+ assert.ok(ids.has('proc-2'), 'second item tracked');
286
+ assert.ok(!ids.has('proc-3'), 'untracked item not present');
287
+ },
288
+ },
289
+
290
+ {
291
+ name: 'getProcessedItemIds-scoped-to-feed-url',
292
+ async run({ assert, admin }) {
293
+ if (!admin) {
294
+ return assert.ok(true, 'skipped: no emulator');
295
+ }
296
+
297
+ const { getProcessedItemIds, trackContentSource } = require(publisherPath);
298
+
299
+ // Track item in feed A
300
+ await trackContentSource(admin, {
301
+ url: 'https://feed-a.com/article',
302
+ origin: '$feed:https://feed-a.com/rss',
303
+ feedUrl: 'https://feed-a.com/rss',
304
+ itemId: 'scoped-1',
305
+ itemTitle: 'Feed A Article',
306
+ usedBy: 'blog',
307
+ brandId: 'test-brand',
308
+ });
309
+
310
+ // Query feed B — should NOT see feed A's items
311
+ const ids = await getProcessedItemIds(admin, 'https://feed-b.com/rss');
312
+ assert.ok(!ids.has('scoped-1'), 'feed A item not visible in feed B query');
313
+ },
314
+ },
315
+
316
+ {
317
+ name: 'getProcessedItemIds-returns-empty-set-without-admin',
318
+ async run({ assert }) {
319
+ const { getProcessedItemIds } = require(publisherPath);
320
+ const ids = await getProcessedItemIds(null, 'https://example.com/feed');
321
+ assert.equal(ids.size, 0, 'returns empty Set when admin is null');
322
+ },
323
+ },
324
+
325
+ // ============================
326
+ // SOURCE RESOLUTION (resolveSource)
327
+ // ============================
328
+ {
329
+ name: 'resolveSource-brand-returns-description-no-sourceContent',
330
+ async run({ assert }) {
331
+ const { resolveSource } = require(publisherPath);
332
+ const mockAssistant = { log() {}, error() {} };
333
+ const entry = {
334
+ brand: { brand: { name: 'Test', description: 'A test brand', id: 'test' } },
335
+ instructions: 'Focus on AI',
336
+ tone: 'professional',
337
+ categories: ['tech'],
338
+ keywords: ['AI', 'automation'],
339
+ };
340
+
341
+ const result = await resolveSource(mockAssistant, '$brand', entry, null, null);
342
+ assert.ok(result.description.includes('Test'), 'description includes brand name');
343
+ assert.ok(result.description.includes('Focus on AI'), 'description includes instructions');
344
+ assert.equal(result.sourceContent, '', 'no sourceContent for $brand');
345
+ assert.equal(result.trackingData, undefined, 'no trackingData for $brand');
346
+ },
347
+ },
348
+
349
+ {
350
+ name: 'resolveSource-brand-includes-tone-and-keywords',
351
+ async run({ assert }) {
352
+ const { resolveSource } = require(publisherPath);
353
+ const mockAssistant = { log() {}, error() {} };
354
+ const entry = {
355
+ brand: { brand: { name: 'Test', description: 'A test brand', id: 'test' } },
356
+ instructions: '',
357
+ tone: 'casual',
358
+ categories: ['marketing', 'social-media'],
359
+ keywords: ['growth', 'engagement'],
360
+ };
361
+
362
+ const result = await resolveSource(mockAssistant, '$brand', entry, null, null);
363
+ assert.ok(result.description.includes('casual'), 'description includes tone');
364
+ assert.ok(result.description.includes('marketing, social-media'), 'description includes categories');
365
+ assert.ok(result.description.includes('growth, engagement'), 'description includes keywords');
366
+ },
367
+ },
368
+
369
+ {
370
+ name: 'resolveSource-text-returns-suggestion-in-description',
371
+ async run({ assert }) {
372
+ const { resolveSource } = require(publisherPath);
373
+ const mockAssistant = { log() {}, error() {} };
374
+ const entry = {
375
+ brand: { brand: { name: 'Test', description: 'A test brand', id: 'test' } },
376
+ instructions: '',
377
+ tone: 'professional',
378
+ categories: [],
379
+ keywords: [],
380
+ };
381
+
382
+ const result = await resolveSource(mockAssistant, 'Write about blockchain technology', entry, null, null);
383
+ assert.ok(result.description.includes('blockchain technology'), 'text source in description');
384
+ assert.equal(result.sourceContent, '', 'no sourceContent for text');
385
+ },
386
+ },
387
+
388
+ {
389
+ name: 'resolveSource-feed-falls-back-to-brand-without-admin',
390
+ async run({ assert }) {
391
+ const { resolveSource } = require(publisherPath);
392
+ const mockAssistant = { log() {}, error() {} };
393
+ const entry = {
394
+ brand: { brand: { name: 'Test', description: 'A test brand', id: 'test' } },
395
+ instructions: '',
396
+ tone: 'professional',
397
+ categories: [],
398
+ keywords: [],
399
+ };
400
+
401
+ const result = await resolveSource(mockAssistant, '$feed:https://nonexistent.example.com/feed', entry, null, null);
402
+ assert.ok(result.description, 'falls back to $brand and returns description');
403
+ assert.equal(result.sourceContent, '', 'no sourceContent on fallback');
404
+ },
405
+ },
406
+
407
+ {
408
+ name: 'resolveSource-parent-falls-back-to-brand-without-manager',
409
+ async run({ assert }) {
410
+ const { resolveSource } = require(publisherPath);
411
+ const mockAssistant = { log() {}, error() {} };
412
+ const entry = {
413
+ brand: { brand: { name: 'Test', description: 'A test brand', id: 'test' } },
414
+ instructions: '',
415
+ tone: 'professional',
416
+ categories: [],
417
+ keywords: [],
418
+ };
419
+
420
+ // Manager is null, so getParentApiUrl() can't be called — falls back to $brand
421
+ const result = await resolveSource(mockAssistant, '$parent', entry, null, null);
422
+ assert.ok(result.description, 'falls back to $brand and returns description');
423
+ assert.equal(result.sourceContent, '', 'no sourceContent on fallback');
424
+ },
425
+ },
426
+
427
+ {
428
+ name: 'resolveSource-parent-falls-back-when-no-parent-url',
429
+ async run({ assert }) {
430
+ const { resolveSource } = require(publisherPath);
431
+ const mockAssistant = { log() {}, error() {} };
432
+ const entry = {
433
+ brand: { brand: { name: 'Test', description: 'A test brand', id: 'test' } },
434
+ instructions: '',
435
+ tone: 'professional',
436
+ categories: [],
437
+ keywords: [],
438
+ };
439
+
440
+ // Manager with no parent URL configured
441
+ const mockManager = { getParentApiUrl: () => null };
442
+ const result = await resolveSource(mockAssistant, '$parent', entry, null, mockManager);
443
+ assert.ok(result.description, 'falls back to $brand when no parent URL');
444
+ assert.equal(result.sourceContent, '', 'no sourceContent on fallback');
445
+ },
446
+ },
447
+
448
+ // ============================
449
+ // MIXED SOURCE DETECTION
450
+ // ============================
451
+ {
452
+ name: 'source-type-detection-covers-all-types',
453
+ async run({ assert }) {
454
+ const sources = [
455
+ '$brand',
456
+ '$parent',
457
+ '$feed:https://example.com/feed',
458
+ 'https://example.com/page',
459
+ 'Write about technology trends',
460
+ ];
461
+
462
+ // $brand
463
+ assert.equal(sources[0], '$brand');
464
+ assert.equal(sources[0].startsWith('$feed:'), false);
465
+
466
+ // $parent
467
+ assert.equal(sources[1], '$parent');
468
+ assert.equal(sources[1].startsWith('$feed:'), false);
469
+
470
+ // $feed:
471
+ assert.equal(sources[2].startsWith('$feed:'), true);
472
+
473
+ // URL
474
+ try { new URL(sources[3]); assert.ok(true, 'URL is valid'); } catch (e) { assert.fail('URL should be valid'); }
475
+
476
+ // text (not $brand, not $parent, not $feed:, not URL)
477
+ assert.ok(!sources[4].startsWith('$feed:'), 'text is not feed');
478
+ assert.ok(sources[4] !== '$brand', 'text is not $brand');
479
+ assert.ok(sources[4] !== '$parent', 'text is not $parent');
480
+ try { new URL(sources[4]); assert.fail('text should not be URL'); } catch (e) { assert.ok(true, 'text is not URL'); }
481
+ },
482
+ },
483
+ ],
484
+ };
@@ -13,9 +13,9 @@
13
13
  const path = require('path');
14
14
  const jetpack = require('fs-jetpack');
15
15
  const fetch = require('wonderful-fetch');
16
- const publisherPath = path.resolve(__dirname, '../../../src/manager/events/cron/daily/ghostii-auto-publisher.js');
16
+ const publisherPath = path.resolve(__dirname, '../../../src/manager/events/cron/daily/blog-auto-publisher.js');
17
17
  const { parseFeed, extractArticleContent } = require('../../../src/manager/libraries/content/feed-parser.js');
18
- const { feedItemHash, getProcessedItemIds, trackFeedItem } = require(publisherPath);
18
+ const { contentSourceHash, getProcessedItemIds, trackContentSource } = require(publisherPath);
19
19
 
20
20
  const EXTENDED = !!process.env.TEST_EXTENDED_MODE;
21
21
  const USER_AGENT = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36';
@@ -26,22 +26,15 @@ const TEMP_DIR = path.join(BEM_ROOT, '.temp', 'ghostii-feed', `run-${new Date().
26
26
 
27
27
  // --- Real feed URLs for extended tests ---
28
28
  // Chosen for stability and confirmed to work with wonderful-fetch.
29
+ // Includes generic tech feeds + marketing/social feeds used by OMEGA consumers.
29
30
  const REAL_FEEDS = [
30
- {
31
- name: 'Ars Technica',
32
- url: 'https://feeds.arstechnica.com/arstechnica/technology-lab',
33
- format: 'rss',
34
- },
35
- {
36
- name: 'TechCrunch',
37
- url: 'https://techcrunch.com/feed/',
38
- format: 'rss',
39
- },
40
- {
41
- name: 'Politico',
42
- url: 'https://rss.politico.com/politics-news.xml',
43
- format: 'rss',
44
- },
31
+ { name: 'Ars Technica', url: 'https://feeds.arstechnica.com/arstechnica/technology-lab', format: 'rss' },
32
+ { name: 'TechCrunch', url: 'https://techcrunch.com/feed/', format: 'rss' },
33
+ { name: 'Social Media Examiner', url: 'https://www.socialmediaexaminer.com/feed/', format: 'rss' },
34
+ { name: 'Hootsuite Blog', url: 'https://blog.hootsuite.com/feed/', format: 'rss' },
35
+ { name: 'Sprout Social Insights', url: 'https://sproutsocial.com/insights/feed/', format: 'rss' },
36
+ { name: 'Buffer Resources', url: 'https://buffer.com/resources/feed/', format: 'rss' },
37
+ { name: 'Digiday', url: 'https://digiday.com/feed/', format: 'rss' },
45
38
  ];
46
39
 
47
40
  /**
@@ -76,9 +69,13 @@ module.exports = {
76
69
 
77
70
  // Pre-track one item so the pipeline has to skip it
78
71
  const testFeedUrl = 'https://integration-test.example.com/feed.xml';
79
- await trackFeedItem(admin, {
72
+ await trackContentSource(admin, {
73
+ url: 'https://integration-test.example.com/old-article',
74
+ origin: `$feed:${testFeedUrl}`,
80
75
  feedUrl: testFeedUrl,
81
- item: { id: 'already-tracked', url: 'https://integration-test.example.com/old-article', title: 'Old Article' },
76
+ itemId: 'already-tracked',
77
+ itemTitle: 'Old Article',
78
+ usedBy: 'blog',
82
79
  brandId: 'test-brand',
83
80
  postUrl: null,
84
81
  postSlug: null,
@@ -127,9 +124,13 @@ module.exports = {
127
124
  }
128
125
 
129
126
  // Track the "newly processed" item
130
- await trackFeedItem(admin, {
127
+ await trackContentSource(admin, {
128
+ url: 'https://integration-test.example.com/new-1',
129
+ origin: `$feed:${state.testFeedUrl}`,
131
130
  feedUrl: state.testFeedUrl,
132
- item: { id: 'new-item-1', url: 'https://integration-test.example.com/new-1', title: 'New Article 1' },
131
+ itemId: 'new-item-1',
132
+ itemTitle: 'New Article 1',
133
+ usedBy: 'blog',
133
134
  brandId: 'test-brand',
134
135
  postUrl: 'https://test-brand.com/blog/new-article-1',
135
136
  postSlug: 'new-article-1',
@@ -286,9 +287,13 @@ module.exports = {
286
287
  const firstItem = state.realFeedItems[0];
287
288
 
288
289
  // Run 1: track the first item
289
- await trackFeedItem(admin, {
290
+ await trackContentSource(admin, {
291
+ url: firstItem.url || firstItem.id,
292
+ origin: `$feed:${realFeedUrl}`,
290
293
  feedUrl: realFeedUrl,
291
- item: firstItem,
294
+ itemId: firstItem.id,
295
+ itemTitle: firstItem.title,
296
+ usedBy: 'blog',
292
297
  brandId: 'integration-test',
293
298
  postUrl: 'https://test.com/blog/article-1',
294
299
  postSlug: 'article-1',
@@ -332,8 +337,8 @@ module.exports = {
332
337
  const firstItem = state.realFeedItems[0];
333
338
 
334
339
  // Verify the doc was stored with the expected hash ID
335
- const expectedDocId = feedItemHash(realFeedUrl, firstItem.id || firstItem.url);
336
- const doc = await admin.firestore().doc(`ghostii-feed-items/${expectedDocId}`).get();
340
+ const expectedDocId = contentSourceHash(`$feed:${realFeedUrl}`, firstItem.url || firstItem.id);
341
+ const doc = await admin.firestore().doc(`content-sources/${expectedDocId}`).get();
337
342
 
338
343
  assert.ok(doc.exists, 'tracking doc exists at expected hash-based ID');
339
344
 
@@ -375,11 +380,11 @@ module.exports = {
375
380
  saveArtifact(`feed-${feed.name.toLowerCase().replace(/\s+/g, '-')}-raw.xml`, text);
376
381
  }
377
382
 
378
- // At least 2 of 3 feeds should parse successfully
383
+ // At least 5 of 7 feeds should parse successfully
379
384
  const successful = results.filter((r) => r.items > 0);
380
385
  assert.ok(
381
- successful.length >= 2,
382
- `at least 2 of ${REAL_FEEDS.length} real feeds parsed successfully: ${JSON.stringify(results)}`,
386
+ successful.length >= 5,
387
+ `at least 5 of ${REAL_FEEDS.length} real feeds parsed successfully: ${JSON.stringify(results)}`,
383
388
  );
384
389
 
385
390
  // Save summary
@@ -57,7 +57,7 @@ module.exports = {
57
57
  await writeArticle({ brand: MOCK_BRAND, description: 'Test prompt', links: ['https://link.com'] });
58
58
 
59
59
  assert.ok(capturedBody, 'request body captured');
60
- assert.deepEqual(capturedBody.keywords, [''], 'default keywords');
60
+ assert.deepEqual(capturedBody.keywords, [], 'default keywords');
61
61
  assert.equal(capturedBody.length, 'long', 'default length');
62
62
  assert.equal(capturedBody.research, true, 'default research');
63
63
  assert.equal(capturedBody.insertImages, true, 'default insertImages');
@@ -258,7 +258,7 @@ module.exports = {
258
258
  // Wait for cron to reset daily counter.
259
259
  // bm_cronDaily executes every registered daily job sequentially. In EXTENDED
260
260
  // mode the real-API jobs (marketing-newsletter-generate, expire-paypal-cancellations,
261
- // ghostii-auto-publisher, etc.) can take 40-50s combined before reset-usage
261
+ // blog-auto-publisher, etc.) can take 40-50s combined before reset-usage
262
262
  // (alphabetical tail) gets its turn. 70s gives that the headroom it needs;
263
263
  // the per-test `timeout` below matches.
264
264
  try {