forked from e-mission/e-mission-phone
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'onboarding_routing_sept_2023' into dashboard-rewrite
- Loading branch information
Showing
16 changed files
with
150 additions
and
58 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
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,15 @@ | ||
{ | ||
"testPathIgnorePatterns": [ | ||
"/node_modules/", | ||
"/platforms/", | ||
"/plugins/", | ||
"/lib/", | ||
"/manual_lib/" | ||
], | ||
"transform": { | ||
"^.+\\.(ts|tsx|js|jsx)$": "ts-jest" | ||
}, | ||
"moduleNameMapper": { | ||
"^react-native$": "react-native-web" | ||
} | ||
} |
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
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,63 @@ | ||
import { getFormattedDate, isMultiDay, getFormattedDateAbbr, getFormattedTimeRange, getDetectedModes, getBaseModeByKey, modeColors } from "../js/diary/diaryHelper"; | ||
|
||
it('returns a formatted date', () => { | ||
expect(getFormattedDate("2023-09-18T00:00:00-07:00")).toBe("Mon September 18, 2023"); | ||
expect(getFormattedDate("")).toBeUndefined(); | ||
expect(getFormattedDate("2023-09-18T00:00:00-07:00", "2023-09-21T00:00:00-07:00")).toBe("Mon September 18, 2023 - Thu September 21, 2023"); | ||
}); | ||
|
||
it('returns an abbreviated formatted date', () => { | ||
expect(getFormattedDateAbbr("2023-09-18T00:00:00-07:00")).toBe("Mon, Sep 18"); | ||
expect(getFormattedDateAbbr("")).toBeUndefined(); | ||
expect(getFormattedDateAbbr("2023-09-18T00:00:00-07:00", "2023-09-21T00:00:00-07:00")).toBe("Mon, Sep 18 - Thu, Sep 21"); | ||
}); | ||
|
||
it('returns a human readable time range', () => { | ||
expect(getFormattedTimeRange("2023-09-18T00:00:00-07:00", "2023-09-18T00:00:00-09:20")).toBe("2 hours"); | ||
expect(getFormattedTimeRange("2023-09-18T00:00:00-07:00", "2023-09-18T00:00:00-09:30")).toBe("3 hours"); | ||
expect(getFormattedTimeRange("", "2023-09-18T00:00:00-09:30")).toBeFalsy(); | ||
}); | ||
|
||
it("returns a Base Mode for a given key", () => { | ||
expect(getBaseModeByKey("WALKING")).toEqual({ name: "WALKING", icon: "walk", color: modeColors.blue }); | ||
expect(getBaseModeByKey("MotionTypes.WALKING")).toEqual({ name: "WALKING", icon: "walk", color: modeColors.blue }); | ||
expect(getBaseModeByKey("I made this type up")).toEqual({ name: "UNKNOWN", icon: "help", color: modeColors.grey }); | ||
}); | ||
|
||
it('returns true/false is multi day', () => { | ||
expect(isMultiDay("2023-09-18T00:00:00-07:00", "2023-09-19T00:00:00-07:00")).toBeTruthy(); | ||
expect(isMultiDay("2023-09-18T00:00:00-07:00", "2023-09-18T00:00:00-09:00")).toBeFalsy(); | ||
expect(isMultiDay("", "2023-09-18T00:00:00-09:00")).toBeFalsy(); | ||
}); | ||
|
||
//created a fake trip with relevant sections by examining log statements | ||
let myFakeTrip = {sections: [ | ||
{ "sensed_mode_str": "BICYCLING", "distance": 6013.73657416706 }, | ||
{ "sensed_mode_str": "WALKING", "distance": 715.3078629361006 } | ||
]}; | ||
let myFakeTrip2 = {sections: [ | ||
{ "sensed_mode_str": "BICYCLING", "distance": 6013.73657416706 }, | ||
{ "sensed_mode_str": "BICYCLING", "distance": 715.3078629361006 } | ||
]}; | ||
|
||
let myFakeDetectedModes = [ | ||
{ mode: "BICYCLING", | ||
icon: "bike", | ||
color: modeColors.green, | ||
pct: 89 }, | ||
{ mode: "WALKING", | ||
icon: "walk", | ||
color: modeColors.blue, | ||
pct: 11 }]; | ||
|
||
let myFakeDetectedModes2 = [ | ||
{ mode: "BICYCLING", | ||
icon: "bike", | ||
color: modeColors.green, | ||
pct: 100 }]; | ||
|
||
it('returns the detected modes, with percentages, for a trip', () => { | ||
expect(getDetectedModes(myFakeTrip)).toEqual(myFakeDetectedModes); | ||
expect(getDetectedModes(myFakeTrip2)).toEqual(myFakeDetectedModes2); | ||
expect(getDetectedModes({})).toEqual([]); // empty trip, no sections, no modes | ||
}) |
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
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
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
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
Oops, something went wrong.