Skip to content
Snippets Groups Projects
Commit c9231233 authored by Tom Robinson's avatar Tom Robinson
Browse files

Fix/add unit tests

parent 2510ece9
No related branches found
No related tags found
No related merge requests found
......@@ -62,11 +62,11 @@ type DeserializeFn = (match: any[], fieldRef: LocalFieldReference | ForeignField
const timeParameterValueDeserializers: Deserializer[] = [
{testRegex: /^past([0-9]+)([a-z]+)s(~)?$/, deserialize: (matches, fieldRef) =>
// $FlowFixMe: not matching TimeIntervalFilter for some reason
["time-interval", fieldRef, -parseInt(matches[0]), matches[1], matches[2] ? { "include-current": true } : {}]
["time-interval", fieldRef, -parseInt(matches[0]), matches[1]].concat(matches[2] ? [{ "include-current": true }] : [])
},
{testRegex: /^next([0-9]+)([a-z]+)s(~)?$/, deserialize: (matches, fieldRef) =>
// $FlowFixMe: not matching TimeIntervalFilter for some reason
["time-interval", fieldRef, parseInt(matches[0]), matches[1], matches[2] ? { "include-current": true } : {}]
["time-interval", fieldRef, parseInt(matches[0]), matches[1]].concat(matches[2] ? [{ "include-current": true }] : [])
},
{testRegex: /^this([a-z]+)$/, deserialize: (matches, fieldRef) =>
["time-interval", fieldRef, "current", matches[0]]
......
......@@ -5,9 +5,15 @@ describe("metabase/meta/Parameter", () => {
it ("should parse past30days", () => {
expect(dateParameterValueToMBQL("past30days", null)).toEqual(["time-interval", null, -30, "day"])
})
it ("should parse past30days~", () => {
expect(dateParameterValueToMBQL("past30days~", null)).toEqual(["time-interval", null, -30, "day", { "include-current": true }])
})
it ("should parse next2years", () => {
expect(dateParameterValueToMBQL("next2years", null)).toEqual(["time-interval", null, 2, "year"])
})
it ("should parse next2years~", () => {
expect(dateParameterValueToMBQL("next2years~", null)).toEqual(["time-interval", null, 2, "year", { "include-current": true }])
})
it ("should parse thisday", () => {
expect(dateParameterValueToMBQL("thisday", null)).toEqual(["time-interval", null, "current", "day"])
})
......
......@@ -48,26 +48,22 @@ describe('FilterPopover', () => {
})
describe('including the current period', () => {
it('should not show a control to the user for the appropriate types of queries', () => {
const wrapper = shallow(
const wrapper = mount(
<FilterPopover
query={QUERY}
filter={QUERY.filters()[1]}
/>
)
const toggle = wrapper.find(CheckBox)
expect(toggle.length).toBe(0)
expect(wrapper.find(CheckBox).length).toBe(0)
})
it('should show a control to the user for the appropriate types of queries', () => {
const wrapper = shallow(
const wrapper = mount(
<FilterPopover
query={QUERY}
filter={QUERY.filters()[0]}
/>
)
const toggle = wrapper.find(CheckBox)
expect(toggle.length).toBe(1)
expect(wrapper.find(CheckBox).length).toBe(1)
})
it('should let the user toggle', () => {
const wrapper = mount(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment