2020-08-11 11:10:08 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Extend the Feature class with the ability to stub feature flags.
|
|
|
|
module StubbedFeature
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
class_methods do
|
|
|
|
# Turn stubbed feature flags on or off.
|
|
|
|
def stub=(stub)
|
|
|
|
@stub = stub
|
|
|
|
end
|
|
|
|
|
|
|
|
def stub?
|
|
|
|
@stub.nil? ? true : @stub
|
|
|
|
end
|
|
|
|
|
|
|
|
# Wipe any previously set feature flags.
|
|
|
|
def reset_flipper
|
|
|
|
@flipper = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
# Replace #flipper method with the optional stubbed/unstubbed version.
|
|
|
|
def flipper
|
|
|
|
if stub?
|
|
|
|
@flipper ||= Flipper.new(Flipper::Adapters::Memory.new)
|
|
|
|
else
|
|
|
|
super
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Replace #enabled? method with the optional stubbed/unstubbed version.
|
2020-10-05 05:08:17 -04:00
|
|
|
def enabled?(*args, **kwargs)
|
|
|
|
feature_flag = super
|
2020-08-11 11:10:08 -04:00
|
|
|
return feature_flag unless stub?
|
|
|
|
|
|
|
|
# If feature flag is not persisted we mark the feature flag as enabled
|
|
|
|
# We do `m.call` as we want to validate the execution of method arguments
|
|
|
|
# and a feature flag state if it is not persisted
|
|
|
|
unless Feature.persisted_name?(args.first)
|
2020-09-08 08:08:41 -04:00
|
|
|
feature_flag = true
|
2020-08-11 11:10:08 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
feature_flag
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|