102 lines
2.5 KiB
JavaScript
102 lines
2.5 KiB
JavaScript
import {visibleAnnotations} from 'shared/annotations/helpers'
|
|
import Dygraph from 'src/external/dygraph'
|
|
|
|
const start = 1515628800000
|
|
const end = 1516060800000
|
|
const timeSeries = [
|
|
[start, 25],
|
|
[1515715200000, 13],
|
|
[1515801600000, 10],
|
|
[1515888000000, 5],
|
|
[1515974400000, null],
|
|
[end, 14],
|
|
]
|
|
|
|
const labels = ['time', 'test.label']
|
|
|
|
const div = document.createElement('div')
|
|
const graph = new Dygraph(div, timeSeries, {labels})
|
|
|
|
const a1 = {
|
|
group: '',
|
|
name: 'a1',
|
|
time: '1515716160000',
|
|
duration: '',
|
|
text: 'you have no swoggels',
|
|
}
|
|
|
|
const a2 = {
|
|
group: '',
|
|
name: 'a2',
|
|
time: '1515716169000',
|
|
duration: '3600000', // 1 hour
|
|
text: 'you have no swoggels',
|
|
}
|
|
|
|
const annotations = [a1]
|
|
|
|
describe('Shared.Annotations.Helpers', () => {
|
|
describe('visibleAnnotations', () => {
|
|
it('returns an empty array with no graph or annotations are provided', () => {
|
|
const actual = visibleAnnotations(undefined, annotations)
|
|
const expected = []
|
|
|
|
expect(actual).toEqual(expected)
|
|
})
|
|
|
|
it('returns an annotation if it is in the time range', () => {
|
|
const actual = visibleAnnotations(graph, annotations)
|
|
const expected = annotations
|
|
|
|
expect(actual).toEqual(expected)
|
|
})
|
|
|
|
it('removes an annotation if it is out of the time range', () => {
|
|
const outOfBounds = {
|
|
group: '',
|
|
name: 'not in time range',
|
|
time: '2515716169000',
|
|
duration: '',
|
|
}
|
|
|
|
const newAnnos = [...annotations, outOfBounds]
|
|
const actual = visibleAnnotations(graph, newAnnos)
|
|
const expected = annotations
|
|
|
|
expect(actual).toEqual(expected)
|
|
})
|
|
|
|
describe('with a duration', () => {
|
|
it('it adds an annotation', () => {
|
|
const withDurations = [...annotations, a2]
|
|
const actual = visibleAnnotations(graph, withDurations)
|
|
const expectedAnnotation = {
|
|
...a2,
|
|
time: `${Number(a2.time) + Number(a2.duration)}`,
|
|
duration: '',
|
|
}
|
|
|
|
const expected = [...withDurations, expectedAnnotation]
|
|
expect(actual).toEqual(expected)
|
|
})
|
|
|
|
it('does not add a duration annotation if it is out of bounds', () => {
|
|
const annotationWithOutOfBoundsDuration = {
|
|
...a2,
|
|
duration: a2.time,
|
|
}
|
|
|
|
const withDurations = [
|
|
...annotations,
|
|
annotationWithOutOfBoundsDuration,
|
|
]
|
|
|
|
const actual = visibleAnnotations(graph, withDurations)
|
|
const expected = withDurations
|
|
|
|
expect(actual).toEqual(expected)
|
|
})
|
|
})
|
|
})
|
|
})
|