-
-
Notifications
You must be signed in to change notification settings - Fork 427
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add NamingStyle adapter to enforce format for added features. #880
Open
bkeepers
wants to merge
2
commits into
main
Choose a base branch
from
naming-style
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
require 'bundler/setup' | ||
require 'flipper' | ||
require 'flipper/adapters/naming_style' | ||
|
||
Flipper.configure do |config| | ||
config.use Flipper::Adapters::NamingStyle, :snake # or :camel, :kebab, :screaming_snake, or a Regexp | ||
end | ||
|
||
# This will work because the feature key is in snake_case. | ||
Flipper.enable(:snake_case) | ||
|
||
begin | ||
# This will raise an error because the feature key is in CamelCase. | ||
Flipper.enable(:CamelCase) | ||
rescue Flipper::Adapters::NamingStyle::InvalidFormat => e | ||
puts "#{e.class}: #{e.message}" | ||
else | ||
fail "An error should have been raised, but wasn't." | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
module Flipper | ||
module Adapters | ||
# An adapter that enforces a naming style for added features. | ||
# | ||
# Flipper.configure do |config| | ||
# config.use Flipper::Adapters::NamingStyle, :snake # or :camel, :kebab, :screaming_snake, or a Regexp | ||
# end | ||
# | ||
class NamingStyle < Wrapper | ||
InvalidFormat = Class.new(Flipper::Error) | ||
|
||
PRESETS = { | ||
camel: /^([A-Z][a-z0-9]*)+$/, # CamelCase | ||
snake: /^[a-z0-9]+(_[a-z0-9]+)*$/, # snake_case | ||
kebab: /^[a-z0-9]+(-[a-z0-9]+)*$/, # kebab-case | ||
screaming_snake: /^[A-Z0-9]+(_[A-Z0-9]+)*$/, # SCREAMING_SNAKE_CASE | ||
} | ||
|
||
attr_reader :format | ||
|
||
def initialize(adapter, format = :snake) | ||
@format = format.is_a?(Regexp) ? format : PRESETS.fetch(format) { | ||
raise ArgumentError, "Unknown format: #{format.inspect}. Must be a Regexp or one of #{PRESETS.keys.join(', ')}" | ||
} | ||
|
||
super(adapter) | ||
end | ||
|
||
def add(feature) | ||
unless valid?(feature.key) | ||
raise InvalidFormat, "Feature key #{feature.key.inspect} does not match format #{format.inspect}" | ||
end | ||
|
||
super feature | ||
end | ||
|
||
def valid?(name) | ||
format.match?(name) | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
require "flipper/adapters/naming_style" | ||
|
||
RSpec.describe Flipper::Adapters::NamingStyle do | ||
it_should_behave_like "a flipper adapter" do | ||
let(:format) { /.*/ } | ||
let(:memory) { Flipper::Adapters::Memory.new } | ||
let(:adapter) { described_class.new(memory, format) } | ||
|
||
subject { adapter } | ||
|
||
describe "#initialize" do | ||
it "accepts a regex" do | ||
expect { described_class.new(memory, format) }.not_to raise_error | ||
end | ||
|
||
it "accepts a symbol" do | ||
[:camel, :snake, :kebab, :screaming_snake].each do |format| | ||
expect { described_class.new(memory, format) }.not_to raise_error | ||
end | ||
end | ||
|
||
it "raises an error if the format is an unknown symbol" do | ||
expect { described_class.new(memory, :Pascal) }.to raise_error(ArgumentError) | ||
end | ||
end | ||
|
||
describe "#add" do | ||
{ | ||
/\A(breaker|feature)\// => { | ||
valid: %w[breaker/search feature/search], | ||
invalid: %w[search breaker_search breaker], | ||
}, | ||
camel: { | ||
valid: %w[Camel CamelCase SCREAMINGCamelCase CamelCase1 Camel1Case], | ||
invalid: %w[snake_case Camel-Kebab lowercase], | ||
}, | ||
snake: { | ||
valid: %w[lower snake_case snake_case_1], | ||
invalid: %w[CamelCase cobraCase double__underscore], | ||
}, | ||
kebab: { | ||
valid: %w[kebab kebab-case kebab-case-1 htt-party], | ||
invalid: %w[CamelCase CamelCase1 double__dash], | ||
}, | ||
screaming_snake: { | ||
valid: %w[SCREAMING SCREAMING_SNAKE SCREAMING_SNAKE_1 HTTP_THING], | ||
invalid: %w[CamelCase CamelCase1 double__underscore], | ||
} | ||
}.each do |format, examples| | ||
context "with format=#{format.inspect}" do | ||
let(:format) { format } | ||
|
||
examples[:valid].each do |feature| | ||
it "adds feature named #{feature}" do | ||
expect(subject.add(flipper[feature])).to eq(true) | ||
expect(subject.features).to eq(Set[feature]) | ||
end | ||
end | ||
|
||
examples[:invalid].each do |feature| | ||
it "raises an error for feature named #{feature}" do | ||
expect { adapter.add(flipper[feature]) }.to raise_error(Flipper::Adapters::NamingStyle::InvalidFormat) | ||
expect(subject.features).to eq(Set[]) | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I approve of these kebabs. 🎉