org/eu/fr/cnes/geipan/GeipanDatasource.test.ts
import { beforeEach, describe, test } from "@javarome/testscript"
import { GeipanCaseSummary } from "./GeipanCaseSummary.js"
import { geipanTestCaseSummaries } from "./GeipanTestCases.js"
import { geipanRR0Mapping } from "./GeipanRR0Mapping.js"
import { DatasourceTestCase } from "../../../../../time/datasource/DatasourceTestCase.js"
import { RR0CaseMapping } from "../../../../../time/datasource/rr0/RR0CaseMapping.js"
import { TimeContext } from "../../../../../time/TimeContext.js"
import { HtmlRR0SsgContext } from "../../../../../RR0SsgContext.js"
import { rr0TestUtil } from "../../../../../test/RR0TestUtil.js"
describe("GeipanCaseSource", () => {
const testCase = new class extends DatasourceTestCase<GeipanCaseSummary> {
constructor(mapping: RR0CaseMapping<GeipanCaseSummary>, sourceCases: GeipanCaseSummary[]) {
super(mapping, sourceCases)
}
protected getTime(c: GeipanCaseSummary): TimeContext {
return c.dateTime
}
protected sortComparator(c1: GeipanCaseSummary, c2: GeipanCaseSummary): number {
return c1.id < c2.id ? -1 : c1.id > c2.id ? 1 : 0
}
}(geipanRR0Mapping, geipanTestCaseSummaries)
let context: HtmlRR0SsgContext
beforeEach(() => {
context = rr0TestUtil.newHtmlContext("time/1/9/7/0/03/index.html")
context.time.setYear(1977)
context.time.setMonth(3)
})
test("fetch", async () => {
await testCase.testFetch(context)
})
test("render", async () => {
await testCase.testRender(context)
})
})