Compare commits
12 Commits
Author | SHA1 | Date | |
---|---|---|---|
599e82a106 | |||
6eea09d8eb | |||
de414b0ee7 | |||
|
b57fb616cb | ||
|
0ae62f1816 | ||
|
589b5598a4 | ||
|
546fc91cb1 | ||
|
b902d662c6 | ||
|
75822dae4f | ||
|
2288ee6cec | ||
|
1c3d10e407 | ||
|
288bfcc978 |
1
.gitignore
vendored
1
.gitignore
vendored
@ -15,3 +15,4 @@ spec/reports
|
|||||||
test/tmp
|
test/tmp
|
||||||
test/version_tmp
|
test/version_tmp
|
||||||
tmp
|
tmp
|
||||||
|
.idea
|
||||||
|
8
Guardfile
Normal file
8
Guardfile
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
# A sample Guardfile
|
||||||
|
# More info at https://github.com/guard/guard#readme
|
||||||
|
|
||||||
|
guard :rspec, cmd: "bundle exec rspec" do
|
||||||
|
watch(%r{^spec/.+_spec\.rb$})
|
||||||
|
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
|
||||||
|
watch('spec/spec_helper.rb') { "spec" }
|
||||||
|
end
|
@ -14,10 +14,10 @@ module Mongoid
|
|||||||
set_values_constant name, values
|
set_values_constant name, values
|
||||||
|
|
||||||
create_field field_name, options
|
create_field field_name, options
|
||||||
alias_attribute name, field_name
|
|
||||||
|
|
||||||
create_validations field_name, values, options
|
create_validations field_name, values, options
|
||||||
define_value_scopes_and_accessors field_name, values, options
|
define_value_scopes_and_accessors field_name, values, options
|
||||||
|
define_field_accessor name, field_name, options
|
||||||
end
|
end
|
||||||
|
|
||||||
private
|
private
|
||||||
@ -42,9 +42,10 @@ module Mongoid
|
|||||||
|
|
||||||
def create_validations(field_name, values, options)
|
def create_validations(field_name, values, options)
|
||||||
if options[:multiple] && options[:validate]
|
if options[:multiple] && options[:validate]
|
||||||
validates field_name, :'mongoid/enum/validators/multiple' => { :in => values, :allow_nil => !options[:required] }
|
validates field_name, :'mongoid/enum/validators/multiple' => { :in => values.map(&:to_sym), :allow_nil => !options[:required] }
|
||||||
|
#FIXME: Shouldn't this be `elsif options[:validate]` ???
|
||||||
elsif validate
|
elsif validate
|
||||||
validates field_name, :inclusion => {:in => values}, :allow_nil => !options[:required]
|
validates field_name, :inclusion => {:in => values.map(&:to_sym)}, :allow_nil => !options[:required]
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -60,6 +61,24 @@ module Mongoid
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def define_field_accessor(name, field_name, options)
|
||||||
|
if options[:multiple]
|
||||||
|
define_array_field_accessor name, field_name
|
||||||
|
else
|
||||||
|
define_string_field_accessor name, field_name
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def define_array_field_accessor(name, field_name)
|
||||||
|
class_eval "def #{name}=(vals) self.write_attribute(:#{field_name}, Array(vals).compact.map(&:to_sym)) end"
|
||||||
|
class_eval "def #{name}() self.read_attribute(:#{field_name}) end"
|
||||||
|
end
|
||||||
|
|
||||||
|
def define_string_field_accessor(name, field_name)
|
||||||
|
class_eval "def #{name}=(val) self.write_attribute(:#{field_name}, val && val.to_sym || nil) end"
|
||||||
|
class_eval "def #{name}() self.read_attribute(:#{field_name}) end"
|
||||||
|
end
|
||||||
|
|
||||||
def define_array_accessor(field_name, value)
|
def define_array_accessor(field_name, value)
|
||||||
class_eval "def #{value}?() self.#{field_name}.include?(:#{value}) end"
|
class_eval "def #{value}?() self.#{field_name}.include?(:#{value}) end"
|
||||||
class_eval "def #{value}!() update_attributes! :#{field_name} => (self.#{field_name} || []) + [:#{value}] end"
|
class_eval "def #{value}!() update_attributes! :#{field_name} => (self.#{field_name} || []) + [:#{value}] end"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
module Mongoid
|
module Mongoid
|
||||||
module Enum
|
module Enum
|
||||||
VERSION = "0.3.0"
|
VERSION = "0.4.6"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -6,11 +6,11 @@ require 'mongoid/enum/version'
|
|||||||
Gem::Specification.new do |spec|
|
Gem::Specification.new do |spec|
|
||||||
spec.name = "mongoid-enum"
|
spec.name = "mongoid-enum"
|
||||||
spec.version = Mongoid::Enum::VERSION
|
spec.version = Mongoid::Enum::VERSION
|
||||||
spec.authors = ["Nicholas Bruning"]
|
spec.authors = ["Mike Sutton"]
|
||||||
spec.email = ["nicholas@bruning.com.au"]
|
spec.email = ["tech@wizewerx.com"]
|
||||||
spec.description = %q{Heavily inspired by DDH's ActiveRecord::Enum, this little library is there to help you cut down the cruft in your models and make the world a happier place at the same time.}
|
spec.description = %q{Forked from https://github.com/thetron/mongoid-enum/commits?author=thetron.}
|
||||||
spec.summary = %q{Sweet enum sugar for your Mongoid documents}
|
spec.summary = %q{Sweet enum sugar for your Mongoid documents}
|
||||||
spec.homepage = "https://github.com/thetron/mongoid-enum"
|
spec.homepage = "https://git.wizewerx.tech/foss/mongoid-enum"
|
||||||
spec.license = "MIT"
|
spec.license = "MIT"
|
||||||
|
|
||||||
spec.files = `git ls-files`.split($/)
|
spec.files = `git ls-files`.split($/)
|
||||||
@ -18,12 +18,10 @@ Gem::Specification.new do |spec|
|
|||||||
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
||||||
spec.require_paths = ["lib"]
|
spec.require_paths = ["lib"]
|
||||||
|
|
||||||
spec.add_runtime_dependency "mongoid", "~> 4.0"
|
spec.add_runtime_dependency "mongoid", "~> 8.0"
|
||||||
|
|
||||||
spec.add_development_dependency "bundler", "~> 1.3"
|
spec.add_development_dependency "bundler", "~> 1.3"
|
||||||
spec.add_development_dependency "rake"
|
spec.add_development_dependency "rake"
|
||||||
spec.add_development_dependency "rspec", "~> 2.14"
|
spec.add_development_dependency "rspec", "~> 3.1"
|
||||||
spec.add_development_dependency "guard-rspec", "~> 4.0.3"
|
spec.add_development_dependency "guard-rspec", "~> 4.6.2"
|
||||||
spec.add_development_dependency "database_cleaner", "~> 1.2.0"
|
spec.add_development_dependency "mongoid-rspec", "~> 3.0"
|
||||||
spec.add_development_dependency "mongoid-rspec", "~> 1.5.1"
|
|
||||||
end
|
end
|
||||||
|
@ -42,7 +42,7 @@ describe Mongoid::Enum do
|
|||||||
it "is aliased" do
|
it "is aliased" do
|
||||||
expect(instance).to respond_to alias_name
|
expect(instance).to respond_to alias_name
|
||||||
expect(instance).to respond_to :"#{alias_name}="
|
expect(instance).to respond_to :"#{alias_name}="
|
||||||
expect(instance).to respond_to :"#{alias_name}?"
|
expect(instance).to respond_to :"#{alias_name}"
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "type" do
|
describe "type" do
|
||||||
@ -68,6 +68,22 @@ describe Mongoid::Enum do
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
describe "'required' option" do
|
||||||
|
context "when true" do
|
||||||
|
let(:instance) { User.new status: nil }
|
||||||
|
it "is not valid with nil value" do
|
||||||
|
expect(instance).to_not be_valid
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
context "when false" do
|
||||||
|
let(:instance) { User.new roles: nil }
|
||||||
|
it "is valid with nil value" do
|
||||||
|
expect(instance).to be_valid
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
describe "constant" do
|
describe "constant" do
|
||||||
it "is set to the values" do
|
it "is set to the values" do
|
||||||
expect(klass::STATUS).to eq values
|
expect(klass::STATUS).to eq values
|
||||||
@ -76,6 +92,18 @@ describe Mongoid::Enum do
|
|||||||
|
|
||||||
describe "accessors" do
|
describe "accessors" do
|
||||||
context "when singular" do
|
context "when singular" do
|
||||||
|
describe "setter" do
|
||||||
|
it "accepts strings" do
|
||||||
|
instance.status = 'banned'
|
||||||
|
expect(instance.status).to eq :banned
|
||||||
|
end
|
||||||
|
|
||||||
|
it "accepts symbols" do
|
||||||
|
instance.status = :banned
|
||||||
|
expect(instance.status).to eq :banned
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
describe "{{value}}!" do
|
describe "{{value}}!" do
|
||||||
it "sets the value" do
|
it "sets the value" do
|
||||||
instance.save
|
instance.save
|
||||||
@ -103,6 +131,33 @@ describe Mongoid::Enum do
|
|||||||
end
|
end
|
||||||
|
|
||||||
context "when multiple" do
|
context "when multiple" do
|
||||||
|
describe "setter" do
|
||||||
|
it "accepts strings" do
|
||||||
|
instance.roles = "author"
|
||||||
|
expect(instance.roles).to eq [:author]
|
||||||
|
end
|
||||||
|
|
||||||
|
it "accepts symbols" do
|
||||||
|
instance.roles = :author
|
||||||
|
expect(instance.roles).to eq [:author]
|
||||||
|
end
|
||||||
|
|
||||||
|
it "accepts arrays of strings" do
|
||||||
|
instance.roles = ['author', 'editor']
|
||||||
|
instance.save
|
||||||
|
puts instance.errors.full_messages
|
||||||
|
instance.reload
|
||||||
|
expect(instance.roles).to include(:author)
|
||||||
|
expect(instance.roles).to include(:editor)
|
||||||
|
end
|
||||||
|
|
||||||
|
it "accepts arrays of symbols" do
|
||||||
|
instance.roles = [:author, :editor]
|
||||||
|
expect(instance.roles).to include(:author)
|
||||||
|
expect(instance.roles).to include(:editor)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
describe "{{value}}!" do
|
describe "{{value}}!" do
|
||||||
context "when field is nil" do
|
context "when field is nil" do
|
||||||
it "creates an array containing the value" do
|
it "creates an array containing the value" do
|
||||||
|
@ -1,22 +1,18 @@
|
|||||||
$: << File.expand_path("../../lib", __FILE__)
|
$: << File.expand_path("../../lib", __FILE__)
|
||||||
|
|
||||||
require 'database_cleaner'
|
|
||||||
require 'mongoid'
|
require 'mongoid'
|
||||||
require 'mongoid-rspec'
|
require "mongoid/rspec"
|
||||||
require 'mongoid/enum'
|
require 'mongoid/enum'
|
||||||
|
|
||||||
ENV['MONGOID_ENV'] = "test"
|
ENV['MONGOID_ENV'] = "test"
|
||||||
|
|
||||||
RSpec.configure do |config|
|
RSpec.configure do |config|
|
||||||
config.include Mongoid::Matchers
|
config.include Mongoid::Matchers
|
||||||
config.before(:suite) do
|
|
||||||
DatabaseCleaner.strategy = :truncation
|
|
||||||
end
|
|
||||||
|
|
||||||
config.after(:each) do
|
config.before(:each) do
|
||||||
DatabaseCleaner.clean
|
|
||||||
Mongoid.purge!
|
Mongoid.purge!
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
Mongoid.load!(File.expand_path("../support/mongoid.yml", __FILE__), :test)
|
Mongoid.load!(File.expand_path("../support/mongoid.yml", __FILE__), :test)
|
||||||
|
Mongo::Logger.logger.level = ::Logger::INFO
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
test:
|
test:
|
||||||
sessions:
|
clients:
|
||||||
default:
|
default:
|
||||||
database: mongoid-enum_test
|
database: mongoid-enum_test
|
||||||
hosts:
|
hosts:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user