-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added test for each diaryService rewrite
- Loading branch information
1 parent
651876b
commit 2bcdac8
Showing
4 changed files
with
133 additions
and
9 deletions.
There are no files selected for viewing
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
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,121 @@ | ||
import { mockLogger } from '../__mocks__/globalMocks'; | ||
import { readAllCompositeTrips, readUnprocessedTrips } from '../js/diary/timelineHelper'; | ||
import { mockBEMUserCache } from '../__mocks__/cordovaMocks'; | ||
|
||
import { MetaData, ServerResponse } from '../js/types/serverData'; | ||
import { CompositeTrip } from '../js/types/diaryTypes'; | ||
|
||
mockLogger(); | ||
mockBEMUserCache(); | ||
const mockMetaData: MetaData = { | ||
write_ts: -13885091, | ||
key: 'test/value', | ||
platform: 'test', | ||
time_zone: 'America/Los_Angeles', | ||
write_fmt_time: '1969-07-16T07:01:49.000Z', | ||
write_local_dt: null, | ||
origin_key: '12345', | ||
}; | ||
const mockData: ServerResponse<CompositeTrip> = { | ||
phone_data: [ | ||
{ | ||
data: { | ||
_id: null, | ||
additions: [], | ||
cleaned_section_summary: null, // TODO | ||
cleaned_trip: null, //ObjId; | ||
confidence_threshold: -1, | ||
confirmed_trip: null, //ObjId; | ||
distance: 777, | ||
duration: 777, | ||
end_confirmed_place: { | ||
data: null, | ||
metadata: JSON.parse(JSON.stringify(mockMetaData)), | ||
}, | ||
end_fmt_time: '2023-11-01T17:55:20.999397-07:00', | ||
end_loc: { | ||
type: 'Point', | ||
coordinates: [-1, -1], | ||
}, | ||
end_local_dt: null, //LocalDt; | ||
end_place: null, //ObjId; | ||
end_ts: -1, | ||
expectation: null, // TODO "{to_label: boolean}" | ||
expected_trip: null, //ObjId; | ||
inferred_labels: [], // TODO | ||
inferred_section_summary: { | ||
count: { | ||
CAR: 1, | ||
WALKING: 1, | ||
}, | ||
distance: { | ||
CAR: 222, | ||
WALKING: 222, | ||
}, | ||
duration: { | ||
CAR: 333, | ||
WALKING: 333, | ||
}, | ||
}, | ||
inferred_trip: null, | ||
key: '12345', | ||
locations: [ | ||
{ | ||
metadata: JSON.parse(JSON.stringify(mockMetaData)), | ||
data: null, | ||
}, | ||
], // LocationType | ||
origin_key: '', | ||
raw_trip: null, | ||
sections: [ | ||
{ | ||
metadata: JSON.parse(JSON.stringify(mockMetaData)), | ||
data: null, | ||
}, | ||
], // TODO | ||
source: 'DwellSegmentationDistFilter', | ||
start_confirmed_place: { | ||
data: null, | ||
metadata: JSON.parse(JSON.stringify(mockMetaData)), | ||
}, | ||
start_fmt_time: '2023-11-01T17:55:20.999397-07:00', | ||
start_loc: { | ||
type: 'Point', | ||
coordinates: [-1, -1], | ||
}, | ||
start_local_dt: null, | ||
start_place: null, | ||
start_ts: null, | ||
user_input: null, | ||
}, | ||
metadata: JSON.parse(JSON.stringify(mockMetaData)), | ||
}, | ||
], | ||
}; | ||
|
||
const testStart = -14576291; | ||
const testEnd = -13885091; | ||
|
||
jest.mock('../js/commHelper', () => ({ | ||
getRawEntries: jest.fn(() => mockData), | ||
})); | ||
|
||
it('fetches a composite trip object and collapses it', async () => { | ||
// When we have End-to-End testing, we can properly test with getRawEnteries | ||
console.log(JSON.stringify(mockData, null, 2)); | ||
expect(readAllCompositeTrips(testStart, testEnd)).resolves.not.toThrow(); | ||
}); | ||
|
||
jest.mock('../js/unifiedDataLoader', () => ({ | ||
getUnifiedDataForInterval: jest.fn(() => { | ||
return Promise.resolve([]); | ||
}), | ||
})); | ||
|
||
it('works when there are no unprocessed trips...', async () => { | ||
expect(readUnprocessedTrips(testStart, testEnd, null)).resolves.not.toThrow(); | ||
}); | ||
|
||
it('works when there are no unprocessed trips...', async () => { | ||
expect(readUnprocessedTrips(testStart, testEnd, null)).resolves.not.toThrow(); | ||
}); |
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
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