Newer
Older
import {select, selectAll} from 'd3-selection';
import {attachToNode} from './index';
import {configureStore} from '../../store';
import {Actions as ivTimeSeriesDataActions} from '../../store/instantaneous-value-time-series-data';
import {Actions as statisticsDataActions} from '../../store/statistics-data';
Bucknell, Mary S.
committed
import {Actions as timeZoneActions} from '../../store/time-zone';
import {Actions as floodDataActions} from '../../store/flood-inundation';
Naab, Daniel James
committed
const TEST_STATE = {
Naab, Daniel James
committed
timeSeries: {
'00010:current': {
points: [{
value: 4,
qualifiers: ['P']
}],
method: 'method1',
Naab, Daniel James
committed
'00060:current': {
points: [{
Naab, Daniel James
committed
value: 10,
qualifiers: ['P']
}],
method: 'method1',
variable: '45807197'
Naab, Daniel James
committed
},
'00060:compare': {
points: [{
Naab, Daniel James
committed
value: 10,
qualifiers: ['P']
}],
method: 'method1',
variable: '45807197'
Naab, Daniel James
committed
}
},
timeSeriesCollections: {
'coll1': {
variable: '45807197',
Naab, Daniel James
committed
timeSeries: ['00060:current']
},
'coll2': {
variable: '45807197',
Naab, Daniel James
committed
timeSeries: ['00060:compare']
},
'coll3': {
variable: '45807197',
timeSeries: ['00060:median']
},
'coll4': {
variable: '45807190',
timeSeries: ['00010:current']
Naab, Daniel James
committed
}
},
Bucknell, Mary S.
committed
queryInfo: {
Bucknell, Mary S.
committed
notes: {
'filter:timeRange': {
mode: 'PERIOD',
periodDays: 7
},
Bucknell, Mary S.
committed
}
}
},
Naab, Daniel James
committed
requests: {
Naab, Daniel James
committed
timeSeriesCollections: ['coll1']
},
timeSeriesCollections: ['coll2', 'col4']
Naab, Daniel James
committed
}
},
variables: {
'45807197': {
variableCode: {
value: '00060'
},
oid: '45807197',
variableDescription: 'Test description for 00060',
Naab, Daniel James
committed
unit: {
unitCode: 'unitCode'
}
},
'45807190': {
variableCode: {
value: '00010'
},
oid: '45807190',
unit: {
unitCode: 'unitCode'
}
Naab, Daniel James
committed
}
},
methods: {
'method1': {
methodDescription: 'method description'
}
Naab, Daniel James
committed
}
},
statisticsData : {
median: {
'00060': {
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
'1234': [
{
month_nu: '2',
day_nu: '20',
p50_va: '40',
begin_yr: '1970',
end_yr: '2017',
loc_web_ds: 'This method'
}, {
month_nu: '2',
day_nu: '21',
p50_va: '41',
begin_yr: '1970',
end_yr: '2017',
loc_web_ds: 'This method'
}, {
month_nu: '2',
day_nu: '22',
p50_va: '42',
begin_yr: '1970',
end_yr: '2017',
loc_web_ds: 'This method'
}
]
}
}
},
ivTimeSeriesState: {
currentIVVariableID: '45807197',
currentIVDateRangeKind: 'P7D',
showIVTimeSeries: {
Bucknell, Mary S.
committed
current: true,
compare: true,
median: true
Naab, Daniel James
committed
},
Bucknell, Mary S.
committed
ui: {
width: 400
floodData: {
floodLevels: {
site_no: '07144100',
action_stage: '20',
flood_stage: '22',
moderate_flood_stage: '25',
major_flood_stage: '26'
Bucknell, Mary S.
committed
}
Naab, Daniel James
committed
};
describe('Hydrograph charting and Loading indicators and data alerts', () => {
Bucknell, Mary S.
committed
let graphNode;
Bucknell, Mary S.
committed
beforeEach(() => {
let body = select('body');
Bucknell, Mary S.
committed
body.append('a')
.attr('id','classic-page-link')
.attr('href', 'https://fakeserver/link');
Bucknell, Mary S.
committed
let component = body.append('div')
Bucknell, Mary S.
committed
.attr('id', 'hydrograph');
component.append('div').attr('class', 'loading-indicator-container');
Bucknell, Mary S.
committed
component.append('div').attr('class', 'graph-container');
component.append('div').attr('class', 'select-time-series-container');
Bucknell, Mary S.
committed
component.append('div').attr('class', 'provisional-data-alert');
Bucknell, Mary S.
committed
component.append('div').attr('id', 'iv-data-table-container');
Bucknell, Mary S.
committed
Bucknell, Mary S.
committed
graphNode = document.getElementById('hydrograph');
jasmine.Ajax.install();
Bucknell, Mary S.
committed
});
afterEach(() => {
jasmine.Ajax.uninstall();
Bucknell, Mary S.
committed
select('#hydrograph').remove();
Bucknell, Mary S.
committed
select('#classic-page-link').remove();
Bucknell, Mary S.
committed
});
it('expect alert if no siteno defined', () => {
attachToNode({}, graphNode, {});
expect(graphNode.innerHTML).toContain('No data is available');
});
describe('Tests for initial data fetching when showOnlyGraph is false (the default)', () => {
let store;
beforeEach(() => {
store = configureStore({
ivTimeSeriesState: {
loadingIVTSKeys: []
}
});
});
it('loading-indicator is shown until initial data has been retrieved', () => {
attachToNode(store, graphNode, {
});
expect(select(graphNode).select('.loading-indicator').size()).toBe(1);
});
Bucknell, Mary S.
committed
it('Expects retrieveIanaTimeZone to be called', () => {
spyOn(timeZoneActions, 'retrieveIanaTimeZone').and.callThrough();
attachToNode(store, graphNode, {
siteno: '12345678'
});
Bucknell, Mary S.
committed
expect(timeZoneActions.retrieveIanaTimeZone).toHaveBeenCalled();
});
describe('Always retrieve the 7 day data and median statistics', () => {
beforeEach(() => {
spyOn(ivTimeSeriesDataActions, 'retrieveIVTimeSeries').and.callThrough();
spyOn(statisticsDataActions, 'retrieveMedianStatistics').and.callThrough();
});
it('Retrieve if no date parameters are used', () => {
attachToNode(store, graphNode, {
siteno: '12345678',
parameterCode: '00065'
});
expect(ivTimeSeriesDataActions.retrieveIVTimeSeries).toHaveBeenCalledWith('12345678');
expect(statisticsDataActions.retrieveMedianStatistics).toHaveBeenCalledWith('12345678');
});
it('Retrieve if period parameters is used', () => {
attachToNode(store, graphNode, {
siteno: '12345678',
parameterCode: '00065',
period: 'P30D'
});
expect(ivTimeSeriesDataActions.retrieveIVTimeSeries).toHaveBeenCalledWith('12345678');
expect(statisticsDataActions.retrieveMedianStatistics).toHaveBeenCalledWith('12345678');
});
it('Retrieve if startDT and endDT parameters are used', () => {
attachToNode(store, graphNode, {
siteno: '12345678',
parameterCode: '00065',
startDT: '2010-01-01',
endDT: '2010-03-01'
});
expect(ivTimeSeriesDataActions.retrieveIVTimeSeries).toHaveBeenCalledWith('12345678');
expect(statisticsDataActions.retrieveMedianStatistics).toHaveBeenCalledWith('12345678');
});
});
describe('Retrieve additional data if indicated', () => {
beforeEach(() => {
spyOn(ivTimeSeriesDataActions, 'retrieveIVTimeSeries').and.returnValue(function() {
return Promise.resolve({});
});
spyOn(ivTimeSeriesDataActions, 'retrieveExtendedIVTimeSeries').and.callThrough();
spyOn(ivTimeSeriesDataActions, 'retrieveUserRequestedIVDataForDateRange').and.callThrough();
});
it('Expect to not retrieve additional time series if not indicated', (done) => {
attachToNode(store, graphNode, {
siteno: '12345678',
parameterCode: '00065'
});
window.requestAnimationFrame(() => {
expect(ivTimeSeriesDataActions.retrieveExtendedIVTimeSeries).not.toHaveBeenCalled();
expect(ivTimeSeriesDataActions.retrieveUserRequestedIVDataForDateRange).not.toHaveBeenCalled();
done();
});
});
it('should retrieve extend time series if period set', (done) => {
attachToNode(store, graphNode, {
siteno: '12345678',
parameterCode: '00065',
period: 'P30D'
});
window.requestAnimationFrame(() => {
expect(ivTimeSeriesDataActions.retrieveExtendedIVTimeSeries).toHaveBeenCalledWith('12345678', 'P30D', '00065');
expect(ivTimeSeriesDataActions.retrieveUserRequestedIVDataForDateRange).not.toHaveBeenCalled();
done();
});
});
it('should not retrieve data for date range if time zone has not been fetched', (done) => {
attachToNode(store, graphNode, {
siteno: '12345678',
parameterCode: '00065',
startDT: '2010-01-01',
endDT: '2010-03-01'
});
window.requestAnimationFrame(() => {
expect(ivTimeSeriesDataActions.retrieveExtendedIVTimeSeries).not. toHaveBeenCalled();
expect(ivTimeSeriesDataActions.retrieveUserRequestedIVDataForDateRange).not.toHaveBeenCalled();
done();
});
});
it('should retrieve data for date range if time zone has been fetched', (done) => {
Bucknell, Mary S.
committed
spyOn(timeZoneActions, 'retrieveIanaTimeZone').and.returnValue(function() {
return Promise.resolve({});
});
attachToNode(store, graphNode, {
siteno: '12345678',
parameterCode: '00065',
startDT: '2010-01-01',
endDT: '2010-03-01'
});
window.requestAnimationFrame(() => {
expect(ivTimeSeriesDataActions.retrieveExtendedIVTimeSeries).not. toHaveBeenCalled();
expect(ivTimeSeriesDataActions.retrieveUserRequestedIVDataForDateRange).toHaveBeenCalledWith('12345678', '2010-01-01', '2010-03-01', '00065');
done();
});
});
});
});
describe('Tests for initial data fetching when showOnlyGraph is true ', () => {
let store;
beforeEach(() => {
store = configureStore({
ivTimeSeriesState: {
loadingIVTSKeys: []
}
});
spyOn(ivTimeSeriesDataActions, 'retrieveIVTimeSeries').and.callThrough();
spyOn(ivTimeSeriesDataActions, 'retrieveCustomTimePeriodIVTimeSeries').and.callThrough();
spyOn(ivTimeSeriesDataActions, 'retrieveUserRequestedIVDataForDateRange');
});
it('should retrieve custom time period if period is specificed', (done) => {
attachToNode(store, graphNode, {
siteno: '12345678',
parameterCode: '00065',
period: 'P20D',
showOnlyGraph: true
});
window.requestAnimationFrame(() => {
expect(ivTimeSeriesDataActions.retrieveIVTimeSeries).not.toHaveBeenCalled();
expect(ivTimeSeriesDataActions.retrieveCustomTimePeriodIVTimeSeries).toHaveBeenCalledWith('12345678', '00065', 'P20D');
expect(ivTimeSeriesDataActions.retrieveUserRequestedIVDataForDateRange).not.toHaveBeenCalled();
done();
});
});
it('should not retrieve date range for date range parameters if time zone has not been fetched', (done) => {
attachToNode(store, graphNode, {
siteno: '12345678',
parameterCode: '00065',
startDT: '2010-01-01',
endDT: '2010-03-01',
showOnlyGraph: true
});
window.requestAnimationFrame(() => {
expect(ivTimeSeriesDataActions.retrieveIVTimeSeries).not.toHaveBeenCalled();
expect(ivTimeSeriesDataActions.retrieveCustomTimePeriodIVTimeSeries).not.toHaveBeenCalled();
expect(ivTimeSeriesDataActions.retrieveUserRequestedIVDataForDateRange).not.toHaveBeenCalled();
done();
});
});
it('should retrieve date range for date range parameters if time zone has been fetched', (done) => {
Bucknell, Mary S.
committed
spyOn(timeZoneActions, 'retrieveIanaTimeZone').and.returnValue(function() {
return Promise.resolve({});
});
attachToNode(store, graphNode, {
siteno: '12345678',
parameterCode: '00065',
startDT: '2010-01-01',
endDT: '2010-03-01',
showOnlyGraph: true
});
window.requestAnimationFrame(() => {
expect(ivTimeSeriesDataActions.retrieveIVTimeSeries).not.toHaveBeenCalled();
expect(ivTimeSeriesDataActions.retrieveCustomTimePeriodIVTimeSeries).not.toHaveBeenCalled();
expect(ivTimeSeriesDataActions.retrieveUserRequestedIVDataForDateRange).toHaveBeenCalledWith('12345678', '2010-01-01', '2010-03-01', '00065');
done();
});
});
it('should retrieve time series if no custom period or date range', (done) => {
attachToNode(store, graphNode, {
siteno: '12345678',
parameterCode: '00065',
showOnlyGraph: true
});
window.requestAnimationFrame(() => {
expect(ivTimeSeriesDataActions.retrieveIVTimeSeries).toHaveBeenCalledWith('12345678', ['00065']);
expect(ivTimeSeriesDataActions.retrieveCustomTimePeriodIVTimeSeries).not.toHaveBeenCalled();
expect(ivTimeSeriesDataActions.retrieveUserRequestedIVDataForDateRange).not.toHaveBeenCalled();
done();
});
});
});
Bucknell, Mary S.
committed
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
describe('graphNode contains the expected elements when no IV time series has been retrieved and showOnlyGraph is false', () => {
let store;
beforeEach((done) => {
spyOn(floodDataActions, 'retrieveWaterwatchData').and.returnValue(function () {
return Promise.resolve({});
});
spyOn(ivTimeSeriesDataActions, 'retrieveIVTimeSeries').and.returnValue(function () {
return Promise.resolve({});
});
store = configureStore({
...TEST_STATE,
ivTimeSeriesData: {},
ivTimeSeriesState: {
...TEST_STATE.ivTimeSeriesState,
currentIVVariableID: '',
currentIVDateRangeKind: ''
},
ui: {
windowWidth: 400,
width: 400
}
});
attachToNode(store, graphNode, {siteno: '12345678'});
window.requestAnimationFrame(() => {
done();
});
});
it('should show info alert', () => {
expect(select('.usa-alert--info').size()).toBe(1);
});
it('should use inventory for classic page link', () => {
expect(select('#classic-page-link').attr('href')).toContain('https://fakenwis.usgs.gov/inventory');
});
});
Bucknell, Mary S.
committed
describe('graphNode contains the expected elements when showOnlyGraph is false', () => {
/* eslint no-use-before-define: 0 */
let store;
beforeEach((done) => {
spyOn(floodDataActions, 'retrieveWaterwatchData').and.returnValue(function() {
spyOn(ivTimeSeriesDataActions, 'retrieveIVTimeSeries').and.returnValue(function() {
return Promise.resolve({});
});
store = configureStore({
...TEST_STATE,
ivTimeSeriesData: {
...TEST_STATE.ivTimeSeriesData,
...TEST_STATE.ivTimeSeriesData.timeSeries,
...TEST_STATE.ivTimeSeriesData.timeSeries['00060:current'],
startTime: 1514926800000,
endTime: 1514930400000,
points: [{
dateTime: 1514926800000,
value: 10,
qualifiers: ['P']
}, {
dateTime: 1514930400000,
value: null,
qualifiers: ['P', 'FLD']
}]
}
}
},
ivTimeSeriesState: {
showIVTimeSeries: {
current: true,
compare: true,
median: true
},
currentIVVariableID: '45807197',
currentIVDateRangeKind: 'P7D',
currentIVMethodID: 'method1',
loadingIVTSKeys: [],
ivGraphBrushOffset: null
Bucknell, Mary S.
committed
}
attachToNode(store, graphNode, {siteno: '12345678'});
window.requestAnimationFrame(() => {
done();
});
Bucknell, Mary S.
committed
it('should not show info alert', () => {
expect(select('.usa-alert--info').size()).toBe(0);
});
it('should not use inventory for classic page link', () => {
expect(select('#classic-page-link').attr('href')).not.toContain('https://fakenwis.usgs.gov/inventory');
});
it('should render the correct number of svg nodes', () => {
// one main hydrograph, brush, slider, legend and two sparklines
expect(selectAll('svg').size()).toBe(6);
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
});
it('should have a title div', () => {
const titleDiv = selectAll('.time-series-graph-title');
expect(titleDiv.size()).toBe(1);
expect(titleDiv.text()).toEqual('Test title for 00060, method description');
});
it('should have a defs node', () => {
expect(selectAll('defs').size()).toBe(1);
expect(selectAll('defs mask').size()).toBe(1);
expect(selectAll('defs pattern').size()).toBe(2);
});
it('should render time series data as a line', () => {
// There should be one segment per time-series. Each is a single
// point, so should be a circle.
expect(selectAll('.hydrograph-svg .line-segment').size()).toBe(2);
});
it('should render a rectangle for masked data', () => {
expect(selectAll('.hydrograph-svg g.current-mask-group').size()).toBe(1);
});
it('should have a point for the median stat data with a label', () => {
expect(selectAll('#median-points path').size()).toBe(1);
expect(selectAll('#median-points text').size()).toBe(0);
});
Bucknell, Mary S.
committed
it('should have brush element for the hydrograph', () => {
expect(selectAll('.brush').size()).toBe(1);
});
it('should have .cursor-slider-svg element', () => {
expect(selectAll('.cursor-slider-svg').size()).toBe(1);
Bucknell, Mary S.
committed
});
it('should have date control elements', () => {
expect(selectAll('#ts-daterange-select-container').size()).toBe(1);
expect(selectAll('#ts-customdaterange-select-container').size()).toBe(1);
});
it('should have method select element', () => {
expect(selectAll('#ts-method-select-container').size()).toBe(1);
});
it('should have the select time series element', () => {
expect(selectAll('#select-time-series').size()).toBe(1);
});
it('should have tooltips for the select series table', () => {
// one for each of the two parameters
expect(selectAll('table .tooltip-item').size()).toBe(2);
Bucknell, Mary S.
committed
});
Bucknell, Mary S.
committed
it('should render the data table', (done) => {
window.requestAnimationFrame(() => {
const container = select('#iv-data-table-container');
expect(container.selectAll('table').size()).toBe(1);
expect(container.select('.pagination').size()).toBe(1);
done();
});
});
Bucknell, Mary S.
committed
describe('hide elements when showOnlyGraph is set to true', () => {
let store;
beforeEach(() => {
spyOn(ivTimeSeriesDataActions, 'retrieveIVTimeSeries').and.returnValue(function() {
return Promise.resolve({});
});
Bucknell, Mary S.
committed
store = configureStore({
...TEST_STATE,
ivTimeSeriesData: {
...TEST_STATE.ivTimeSeriesData,
Bucknell, Mary S.
committed
timeSeries: {
...TEST_STATE.ivTimeSeriesData.timeSeries,
Bucknell, Mary S.
committed
'00060:current': {
...TEST_STATE.ivTimeSeriesData.timeSeries['00060:current'],
Bucknell, Mary S.
committed
startTime: 1514926800000,
endTime: 1514930400000,
points: [{
dateTime: 1514926800000,
value: 10,
qualifiers: ['P']
}, {
dateTime: 1514930400000,
value: null,
qualifiers: ['P', 'FLD']
}]
}
}
},
ivTimeSeriesState: {
showIVTimeSeries: {
Bucknell, Mary S.
committed
current: true,
compare: true,
median: true
},
currentIVVariableID: '45807197',
currentIVDateRangeKind: 'P7D',
currentIVMethodID: 'method1',
loadingIVTSKeys: [],
ivGraphBrushOffset: null
Bucknell, Mary S.
committed
},
ui: {
windowWidth: 400,
Bucknell, Mary S.
committed
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
}
});
attachToNode(store, graphNode, {siteno: '123456788', showOnlyGraph: true});
});
it('should not have brush element for the hydrograph', () => {
expect(selectAll('.brush').size()).toBe(0);
});
it('should not have slider-wrapper element', () => {
expect(selectAll('.slider-wrapper').size()).toBe(0);
});
it('should not have date control elements', () => {
expect(selectAll('#ts-daterange-select-container').size()).toBe(0);
expect(selectAll('#ts-customdaterange-select-container').size()).toBe(0);
});
it('should not have method select element', () => {
expect(selectAll('#ts-method-select-container').size()).toBe(0);
});
it('should not have the select time series element', () => {
expect(selectAll('#select-time-series').size()).toBe(0);
});
Bucknell, Mary S.
committed
it('should not have the data table', () => {
expect(select('#iv-data-table-container').selectAll('table').size()).toBe(0);
});
Bucknell, Mary S.
committed
});