@@ -24,7 +24,9 @@ import {
24
24
createDomainObjectWithDefaults ,
25
25
createPlanFromJSON ,
26
26
navigateToObjectWithFixedTimeBounds ,
27
- setFixedIndependentTimeConductorBounds
27
+ setFixedIndependentTimeConductorBounds ,
28
+ setFixedTimeMode ,
29
+ setTimeConductorBounds
28
30
} from '../../../appActions.js' ;
29
31
import { expect , test } from '../../../pluginFixtures.js' ;
30
32
@@ -74,29 +76,22 @@ const testPlan = {
74
76
} ;
75
77
76
78
test . describe ( 'Time Strip' , ( ) => {
77
- test ( 'Create two Time Strips, add a single Plan to both, and verify they can have separate Independent Time Contexts' , async ( {
78
- page
79
- } ) => {
80
- test . info ( ) . annotations . push ( {
81
- type : 'issue' ,
82
- description : 'https://github.com/nasa/openmct/issues/5627'
83
- } ) ;
84
-
85
- // Constant locators
86
- const activityBounds = page . locator ( '.activity-bounds' ) ;
79
+ let timestrip ;
80
+ let plan ;
87
81
82
+ test . beforeEach ( async ( { page } ) => {
88
83
// Goto baseURL
89
84
await page . goto ( './' , { waitUntil : 'domcontentloaded' } ) ;
90
85
91
- const timestrip = await test . step ( 'Create a Time Strip' , async ( ) => {
86
+ timestrip = await test . step ( 'Create a Time Strip' , async ( ) => {
92
87
const createdTimeStrip = await createDomainObjectWithDefaults ( page , { type : 'Time Strip' } ) ;
93
88
const objectName = await page . locator ( '.l-browse-bar__object-name' ) . innerText ( ) ;
94
89
expect ( objectName ) . toBe ( createdTimeStrip . name ) ;
95
90
96
91
return createdTimeStrip ;
97
92
} ) ;
98
93
99
- const plan = await test . step ( 'Create a Plan and add it to the timestrip' , async ( ) => {
94
+ plan = await test . step ( 'Create a Plan and add it to the timestrip' , async ( ) => {
100
95
const createdPlan = await createPlanFromJSON ( page , {
101
96
name : 'Test Plan' ,
102
97
json : testPlan
@@ -110,6 +105,22 @@ test.describe('Time Strip', () => {
110
105
. dragTo ( page . getByLabel ( 'Object View' ) ) ;
111
106
await page . getByLabel ( 'Save' ) . click ( ) ;
112
107
await page . getByRole ( 'listitem' , { name : 'Save and Finish Editing' } ) . click ( ) ;
108
+
109
+ return createdPlan ;
110
+ } ) ;
111
+ } ) ;
112
+ test ( 'Create two Time Strips, add a single Plan to both, and verify they can have separate Independent Time Contexts' , async ( {
113
+ page
114
+ } ) => {
115
+ test . info ( ) . annotations . push ( {
116
+ type : 'issue' ,
117
+ description : 'https://github.com/nasa/openmct/issues/5627'
118
+ } ) ;
119
+
120
+ // Constant locators
121
+ const activityBounds = page . locator ( '.activity-bounds' ) ;
122
+
123
+ await test . step ( 'Set time strip to fixed timespan mode and verify activities' , async ( ) => {
113
124
const startBound = testPlan . TEST_GROUP [ 0 ] . start ;
114
125
const endBound = testPlan . TEST_GROUP [ testPlan . TEST_GROUP . length - 1 ] . end ;
115
126
@@ -119,8 +130,6 @@ test.describe('Time Strip', () => {
119
130
// Verify all events are displayed
120
131
const eventCount = await page . locator ( '.activity-bounds' ) . count ( ) ;
121
132
expect ( eventCount ) . toEqual ( testPlan . TEST_GROUP . length ) ;
122
-
123
- return createdPlan ;
124
133
} ) ;
125
134
126
135
await test . step ( 'TimeStrip can use the Independent Time Conductor' , async ( ) => {
@@ -177,4 +186,48 @@ test.describe('Time Strip', () => {
177
186
expect ( await activityBounds . count ( ) ) . toEqual ( 1 ) ;
178
187
} ) ;
179
188
} ) ;
189
+
190
+ test ( 'Time strip now line' , async ( { page } ) => {
191
+ test . info ( ) . annotations . push ( {
192
+ type : 'issue' ,
193
+ description : 'https://github.com/nasa/openmct/issues/7817'
194
+ } ) ;
195
+
196
+ await test . step ( 'Is displayed in realtime mode' , async ( ) => {
197
+ await expect ( page . getByLabel ( 'Now Marker' ) ) . toBeVisible ( ) ;
198
+ } ) ;
199
+
200
+ await test . step ( 'Is hidden when out of bounds of the time axis' , async ( ) => {
201
+ // Switch to fixed timespan mode
202
+ await setFixedTimeMode ( page ) ;
203
+ // Get the end bounds
204
+ const endBounds = await page . getByLabel ( 'End bounds' ) . textContent ( ) ;
205
+
206
+ // Add 2 minutes to end bound datetime and use it as the new end time
207
+ let endTimeStamp = new Date ( endBounds ) ;
208
+ endTimeStamp . setUTCMinutes ( endTimeStamp . getUTCMinutes ( ) + 2 ) ;
209
+ const endDate = endTimeStamp . toISOString ( ) . split ( 'T' ) [ 0 ] ;
210
+ const milliseconds = endTimeStamp . getMilliseconds ( ) ;
211
+ const endTime = endTimeStamp . toISOString ( ) . split ( 'T' ) [ 1 ] . replace ( `.${ milliseconds } Z` , '' ) ;
212
+
213
+ // Subtract 1 minute from the end bound and use it as the new start time
214
+ let startTimeStamp = new Date ( endBounds ) ;
215
+ startTimeStamp . setUTCMinutes ( startTimeStamp . getUTCMinutes ( ) + 1 ) ;
216
+ const startDate = startTimeStamp . toISOString ( ) . split ( 'T' ) [ 0 ] ;
217
+ const startMilliseconds = startTimeStamp . getMilliseconds ( ) ;
218
+ const startTime = startTimeStamp
219
+ . toISOString ( )
220
+ . split ( 'T' ) [ 1 ]
221
+ . replace ( `.${ startMilliseconds } Z` , '' ) ;
222
+ // Set fixed timespan mode to the future so that "now" is out of bounds.
223
+ await setTimeConductorBounds ( page , {
224
+ startDate,
225
+ endDate,
226
+ startTime,
227
+ endTime
228
+ } ) ;
229
+
230
+ await expect ( page . getByLabel ( 'Now Marker' ) ) . toBeHidden ( ) ;
231
+ } ) ;
232
+ } ) ;
180
233
} ) ;
0 commit comments