Files
wehub-resource-sync d25d482dc2
Publish CLI Package / publish-npm (push) Waiting to run
Publish Python SDK / publish-pypi (push) Waiting to run
Publish TypeScript SDK / publish-npm (push) Waiting to run
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 13:20:55 +08:00

153 lines
4.7 KiB
TypeScript

/**
* @vitest-environment node
*/
import fs from 'fs'
import path from 'path'
import { describe, expect, it } from 'vitest'
import { SITE_URL } from '@/lib/core/utils/urls'
const SIM_ROOT = path.resolve(__dirname, '..')
const APP_DIR = path.resolve(SIM_ROOT, 'app')
const LANDING_DIR = path.resolve(APP_DIR, '(landing)')
/**
* All directories containing public-facing pages or SEO-relevant code.
* Non-marketing app routes (workspace, chat, form) are excluded —
* they legitimately use getBaseUrl() for dynamic, env-dependent URLs.
*/
const SEO_SCAN_DIRS = [
LANDING_DIR,
path.resolve(APP_DIR, 'changelog'),
path.resolve(APP_DIR, 'changelog.xml'),
path.resolve(SIM_ROOT, 'lib', 'blog'),
path.resolve(SIM_ROOT, 'content', 'blog'),
]
const SEO_SCAN_INDIVIDUAL_FILES = [
path.resolve(APP_DIR, 'robots.ts'),
path.resolve(APP_DIR, 'sitemap.ts'),
path.resolve(SIM_ROOT, 'ee', 'whitelabeling', 'metadata.ts'),
]
/**
* Files whose entire URL output is SEO-facing (robots.txt, sitemap.xml).
* Unlike metadata exports, these don't use `metadataBase`, so the existing
* `getBaseUrl()`-in-metadata check would miss a regression here.
*/
const SEO_DEFAULT_EXPORT_FILES = [
path.resolve(APP_DIR, 'robots.ts'),
path.resolve(APP_DIR, 'sitemap.ts'),
]
function collectFiles(dir: string, exts: string[]): string[] {
const results: string[] = []
if (!fs.existsSync(dir)) return results
for (const entry of fs.readdirSync(dir, { withFileTypes: true })) {
const full = path.join(dir, entry.name)
if (entry.isDirectory()) {
results.push(...collectFiles(full, exts))
} else if (exts.some((ext) => entry.name.endsWith(ext)) && !entry.name.includes('.test.')) {
results.push(full)
}
}
return results
}
function getAllSeoFiles(exts: string[]): string[] {
const files: string[] = []
for (const dir of SEO_SCAN_DIRS) {
files.push(...collectFiles(dir, exts))
}
for (const file of SEO_SCAN_INDIVIDUAL_FILES) {
if (fs.existsSync(file)) files.push(file)
}
return files
}
describe('SEO canonical URLs', () => {
it('SITE_URL equals https://www.sim.ai', () => {
expect(SITE_URL).toBe('https://www.sim.ai')
})
it('public pages do not hardcode https://sim.ai (without www)', () => {
const files = getAllSeoFiles(['.ts', '.tsx', '.mdx'])
const violations: string[] = []
for (const file of files) {
const content = fs.readFileSync(file, 'utf-8')
const lines = content.split('\n')
for (let i = 0; i < lines.length; i++) {
const line = lines[i]
const hasBareSimAi =
line.includes("'https://sim.ai'") ||
line.includes("'https://sim.ai/") ||
line.includes('"https://sim.ai"') ||
line.includes('"https://sim.ai/') ||
line.includes('`https://sim.ai/') ||
line.includes('`https://sim.ai`') ||
line.includes('canonical: https://sim.ai/')
if (!hasBareSimAi) continue
const isAllowlisted =
line.includes('https://sim.ai/careers') || line.includes('https://sim.ai/discord')
if (isAllowlisted) continue
const rel = path.relative(SIM_ROOT, file)
violations.push(`${rel}:${i + 1}: ${line.trim()}`)
}
}
expect(
violations,
`Found hardcoded https://sim.ai (without www):\n${violations.join('\n')}`
).toHaveLength(0)
})
it('robots.ts and sitemap.ts do not import getBaseUrl', () => {
const violations: string[] = []
for (const file of SEO_DEFAULT_EXPORT_FILES) {
if (!fs.existsSync(file)) continue
const content = fs.readFileSync(file, 'utf-8')
if (content.includes('getBaseUrl')) {
violations.push(path.relative(SIM_ROOT, file))
}
}
expect(
violations,
`robots.ts/sitemap.ts must use SITE_URL, not getBaseUrl():\n${violations.join('\n')}`
).toHaveLength(0)
})
it('public pages do not use getBaseUrl() for SEO metadata', () => {
const files = getAllSeoFiles(['.ts', '.tsx'])
const violations: string[] = []
for (const file of files) {
const content = fs.readFileSync(file, 'utf-8')
if (!content.includes('getBaseUrl')) continue
const hasMetadataExport =
content.includes('export const metadata') ||
content.includes('export async function generateMetadata')
const usesGetBaseUrlInMetadata =
hasMetadataExport &&
(content.includes('= getBaseUrl()') || content.includes('metadataBase: new URL(getBaseUrl'))
if (usesGetBaseUrlInMetadata) {
const rel = path.relative(SIM_ROOT, file)
violations.push(rel)
}
}
expect(
violations,
`Public pages should use SITE_URL for metadata, not getBaseUrl():\n${violations.join('\n')}`
).toHaveLength(0)
})
})