summaryrefslogtreecommitdiff
path: root/spec/controllers/concerns/controller_with_feature_category_spec.rb
blob: 55e84755f5c1968681072404ea1a4ec0861678ea (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# frozen_string_literal: true

require 'fast_spec_helper'
require_relative "../../../app/controllers/concerns/controller_with_feature_category"

RSpec.describe ControllerWithFeatureCategory do
  describe ".feature_category_for_action" do
    let(:base_controller) do
      Class.new do
        include ControllerWithFeatureCategory
      end
    end

    let(:controller) do
      Class.new(base_controller) do
        feature_category :foo, %w(update edit)
        feature_category :bar, %w(index show)
        feature_category :quux, %w(destroy)
      end
    end

    let(:subclass) do
      Class.new(controller) do
        feature_category :baz, %w(subclass_index)
      end
    end

    it "is nil when nothing was defined" do
      expect(base_controller.feature_category_for_action("hello")).to be_nil
    end

    it "returns the expected category", :aggregate_failures do
      expect(controller.feature_category_for_action("update")).to eq(:foo)
      expect(controller.feature_category_for_action("index")).to eq(:bar)
      expect(controller.feature_category_for_action("destroy")).to eq(:quux)
    end

    it "returns the expected category for categories defined in subclasses" do
      expect(subclass.feature_category_for_action("subclass_index")).to eq(:baz)
    end

    it "raises an error when defining for the controller and for individual actions" do
      expect do
        Class.new(base_controller) do
          feature_category :hello
          feature_category :goodbye, [:world]
        end
      end.to raise_error(ArgumentError, "hello is defined for all actions, but other categories are set")
    end

    it "raises an error when multiple calls define the same action" do
      expect do
        Class.new(base_controller) do
          feature_category :hello, [:world]
          feature_category :goodbye, ["world"]
        end
      end.to raise_error(ArgumentError, "Actions have multiple feature categories: world")
    end
  end
end