summaryrefslogtreecommitdiff
path: root/spec/graphql/types/timeframe_type_spec.rb
blob: dfde324289745b1df5cb1657870c08a8c12ac6b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe GitlabSchema.types['Timeframe'] do
  let(:input) { { start: "2018-06-04", end: "2020-10-06" } }
  let(:output) { { start: Date.parse(input[:start]), end: Date.parse(input[:end]) } }

  it 'coerces ISO-dates into Time objects' do
    expect(described_class.coerce_isolated_input(input)).to eq(output)
  end

  it 'rejects invalid input' do
    input[:start] = 'foo'

    expect { described_class.coerce_isolated_input(input) }
      .to raise_error(GraphQL::CoercionError)
  end

  it 'accepts times as input' do
    with_time = input.merge(start: '2018-06-04T13:48:14Z')

    expect(described_class.coerce_isolated_input(with_time)).to eq(output)
  end

  it 'requires both ends of the range' do
    types = described_class.arguments.slice('start', 'end').values.map(&:type)

    expect(types).to all(be_non_null)
  end

  it 'rejects invalid range' do
    input.merge!(start: input[:end], end: input[:start])

    expect { described_class.coerce_isolated_input(input) }
      .to raise_error(::Gitlab::Graphql::Errors::ArgumentError, 'start must be before end')
  end
end