-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #88 from infinimesh/dev-shadows-mocks
shadows mocks
- Loading branch information
Showing
2 changed files
with
63 additions
and
10 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
import { Struct, Timestamp } from '@bufbuild/protobuf' | ||
import { createPromiseClient, createRouterTransport } from '@connectrpc/connect' | ||
import { DevicesService, ShadowService } from 'infinimesh-proto/build/es/node/node_connect' | ||
import { QueryRequest } from 'infinimesh-proto/build/es/node/node_pb' | ||
import { ConnectionState, GetResponse, Shadow, State } from 'infinimesh-proto/build/es/shadow/shadow_pb' | ||
import { transport as devicesTransport } from './devices.ts' | ||
|
||
export const transport = createRouterTransport(({ service }) => { | ||
const devicesApi = createPromiseClient(DevicesService, devicesTransport) | ||
const shadows = new Map<string, Shadow>() | ||
|
||
devicesApi.list(new QueryRequest()).then(({ devices }) => { | ||
devices.forEach(({ uuid }) => { | ||
const length = Math.floor(Math.random() * 6) | ||
const timestamp = new Timestamp({ seconds: BigInt(Math.round(Date.now() / 1000)) }) | ||
|
||
shadows.set(uuid, new Shadow({ | ||
connection: new ConnectionState({ | ||
clientId: `${length}`, connected: true, timestamp | ||
}), | ||
desired: new State({ data: new Struct(), timestamp }), | ||
reported: new State({ data: new Struct(), timestamp }), | ||
device: uuid | ||
})) | ||
}) | ||
}) | ||
|
||
service(ShadowService, { | ||
get (request) { | ||
return new GetResponse({ | ||
shadows: request.pool.map((uuid) => shadows.get(uuid)) as Shadow[] | ||
}) | ||
}, | ||
patch (request) { | ||
shadows.set(request.device, request) | ||
return new Shadow(request) | ||
}, | ||
remove (request) { | ||
const result = shadows.get(request.device) | ||
|
||
shadows.delete(request.device) | ||
return new Shadow(result) | ||
}, | ||
streamShadow (request) { | ||
return { | ||
[Symbol.asyncIterator]: () => ({ | ||
next: async () => (request.devices.length > 0) | ||
? { value: new Shadow(shadows.get(request.devices.pop() as string)), done: false } | ||
: { value: null, done: true } | ||
}) | ||
} | ||
}, | ||
streamShadowSync (request) { | ||
return { | ||
[Symbol.asyncIterator]: () => ({ | ||
next: async () => (request.devices.length < 1) | ||
? { value: new Shadow(shadows.get(request.devices.pop() as string)), done: false } | ||
: { value: null, done: true } | ||
}) | ||
} | ||
} | ||
}) | ||
}) |