mirror of
https://github.com/kennethnym/aris.git
synced 2026-03-20 00:51:20 +00:00
Replace per-source services (LocationService, WeatherService, TflService, FeedEngineService) with a single UserSessionManager that owns all per-user state. Source creation is delegated to thin FeedSourceProvider implementations per source type. Co-authored-by: Ona <no-reply@ona.com>
73 lines
1.8 KiB
TypeScript
73 lines
1.8 KiB
TypeScript
import type { ActionDefinition, Context, FeedSource } from "@aris/core"
|
|
|
|
import { LocationSource } from "@aris/source-location"
|
|
import { describe, expect, test } from "bun:test"
|
|
|
|
import { UserSession } from "./user-session.ts"
|
|
|
|
function createStubSource(id: string): FeedSource {
|
|
return {
|
|
id,
|
|
async listActions(): Promise<Record<string, ActionDefinition>> {
|
|
return {}
|
|
},
|
|
async executeAction(): Promise<unknown> {
|
|
return undefined
|
|
},
|
|
async fetchContext(): Promise<Partial<Context> | null> {
|
|
return null
|
|
},
|
|
async fetchItems() {
|
|
return []
|
|
},
|
|
}
|
|
}
|
|
|
|
describe("UserSession", () => {
|
|
test("registers sources and starts engine", async () => {
|
|
const session = new UserSession([createStubSource("test-a"), createStubSource("test-b")])
|
|
|
|
const result = await session.engine.refresh()
|
|
|
|
expect(result.errors).toHaveLength(0)
|
|
})
|
|
|
|
test("getSource returns registered source", () => {
|
|
const location = new LocationSource()
|
|
const session = new UserSession([location])
|
|
|
|
const result = session.getSource<LocationSource>("aris.location")
|
|
|
|
expect(result).toBe(location)
|
|
})
|
|
|
|
test("getSource returns undefined for unknown source", () => {
|
|
const session = new UserSession([createStubSource("test")])
|
|
|
|
expect(session.getSource("unknown")).toBeUndefined()
|
|
})
|
|
|
|
test("destroy stops engine and clears sources", () => {
|
|
const session = new UserSession([createStubSource("test")])
|
|
|
|
session.destroy()
|
|
|
|
expect(session.getSource("test")).toBeUndefined()
|
|
})
|
|
|
|
test("engine.executeAction routes to correct source", async () => {
|
|
const location = new LocationSource()
|
|
const session = new UserSession([location])
|
|
|
|
await session.engine.executeAction("aris.location", "update-location", {
|
|
lat: 51.5,
|
|
lng: -0.1,
|
|
accuracy: 10,
|
|
timestamp: new Date(),
|
|
})
|
|
|
|
expect(location.lastLocation).toBeDefined()
|
|
expect(location.lastLocation!.lat).toBe(51.5)
|
|
})
|
|
})
|