create_valid 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/Rakefile +53 -0
- data/VERSION +1 -0
- data/create_valid.gemspec +54 -0
- data/lib/create_valid.rb +124 -0
- data/rails/init.rb +18 -0
- data/test/helper.rb +10 -0
- data/test/test_create_valid.rb +7 -0
- metadata +85 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Jason Frame
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
= create_valid
|
2
|
+
|
3
|
+
Description goes here.
|
4
|
+
|
5
|
+
== Note on Patches/Pull Requests
|
6
|
+
|
7
|
+
* Fork the project.
|
8
|
+
* Make your feature addition or bug fix.
|
9
|
+
* Add tests for it. This is important so I don't break it in a
|
10
|
+
future version unintentionally.
|
11
|
+
* Commit, do not mess with rakefile, version, or history.
|
12
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
|
+
* Send me a pull request. Bonus points for topic branches.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2010 Jason Frame. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,53 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "create_valid"
|
8
|
+
gem.summary = %Q{An object for factory for Ruby/Rails, supporting Test::Unit}
|
9
|
+
# gem.description = %Q{TODO: longer description of your gem}
|
10
|
+
gem.email = "jason@onehackoranother.com"
|
11
|
+
gem.homepage = "http://github.com/jaz303/create_valid"
|
12
|
+
gem.authors = ["Jason Frame"]
|
13
|
+
gem.add_development_dependency "shoulda", ">= 0"
|
14
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
15
|
+
end
|
16
|
+
Jeweler::GemcutterTasks.new
|
17
|
+
rescue LoadError
|
18
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
19
|
+
end
|
20
|
+
|
21
|
+
require 'rake/testtask'
|
22
|
+
Rake::TestTask.new(:test) do |test|
|
23
|
+
test.libs << 'lib' << 'test'
|
24
|
+
test.pattern = 'test/**/test_*.rb'
|
25
|
+
test.verbose = true
|
26
|
+
end
|
27
|
+
|
28
|
+
begin
|
29
|
+
require 'rcov/rcovtask'
|
30
|
+
Rcov::RcovTask.new do |test|
|
31
|
+
test.libs << 'test'
|
32
|
+
test.pattern = 'test/**/test_*.rb'
|
33
|
+
test.verbose = true
|
34
|
+
end
|
35
|
+
rescue LoadError
|
36
|
+
task :rcov do
|
37
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
task :test => :check_dependencies
|
42
|
+
|
43
|
+
task :default => :test
|
44
|
+
|
45
|
+
require 'rake/rdoctask'
|
46
|
+
Rake::RDocTask.new do |rdoc|
|
47
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
48
|
+
|
49
|
+
rdoc.rdoc_dir = 'rdoc'
|
50
|
+
rdoc.title = "create_valid #{version}"
|
51
|
+
rdoc.rdoc_files.include('README*')
|
52
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
53
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.1
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{create_valid}
|
8
|
+
s.version = "0.0.1"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Jason Frame"]
|
12
|
+
s.date = %q{2010-07-07}
|
13
|
+
s.email = %q{jason@onehackoranother.com}
|
14
|
+
s.extra_rdoc_files = [
|
15
|
+
"LICENSE",
|
16
|
+
"README.rdoc"
|
17
|
+
]
|
18
|
+
s.files = [
|
19
|
+
".document",
|
20
|
+
".gitignore",
|
21
|
+
"LICENSE",
|
22
|
+
"README.rdoc",
|
23
|
+
"Rakefile",
|
24
|
+
"VERSION",
|
25
|
+
"create_valid.gemspec",
|
26
|
+
"lib/create_valid.rb",
|
27
|
+
"rails/init.rb",
|
28
|
+
"test/helper.rb",
|
29
|
+
"test/test_create_valid.rb"
|
30
|
+
]
|
31
|
+
s.homepage = %q{http://github.com/jaz303/create_valid}
|
32
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
33
|
+
s.require_paths = ["lib"]
|
34
|
+
s.rubygems_version = %q{1.3.6}
|
35
|
+
s.summary = %q{An object for factory for Ruby/Rails, supporting Test::Unit}
|
36
|
+
s.test_files = [
|
37
|
+
"test/helper.rb",
|
38
|
+
"test/test_create_valid.rb"
|
39
|
+
]
|
40
|
+
|
41
|
+
if s.respond_to? :specification_version then
|
42
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
43
|
+
s.specification_version = 3
|
44
|
+
|
45
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
46
|
+
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
47
|
+
else
|
48
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
49
|
+
end
|
50
|
+
else
|
51
|
+
s.add_dependency(%q<shoulda>, [">= 0"])
|
52
|
+
end
|
53
|
+
end
|
54
|
+
|
data/lib/create_valid.rb
ADDED
@@ -0,0 +1,124 @@
|
|
1
|
+
module CreateValid
|
2
|
+
MAGIC_METHOD = /^(build|create)_(valid_)?(.*?)(_with_(.*?))?$/
|
3
|
+
|
4
|
+
@@registry = Hash.new { |h,k| h[k] = [] }
|
5
|
+
@@sequence = 0
|
6
|
+
|
7
|
+
def self.next_sequence
|
8
|
+
@@sequence += 1
|
9
|
+
end
|
10
|
+
|
11
|
+
def self.[](key)
|
12
|
+
@@registry[key.to_s]
|
13
|
+
end
|
14
|
+
|
15
|
+
def self.register(model_name, attributes, &block)
|
16
|
+
model_name = model_name.to_s.gsub(' ', '_')
|
17
|
+
if attributes
|
18
|
+
raise ArgumentError, "attributes must be a hash" unless attributes.is_a?(Hash)
|
19
|
+
raise ArgumentError, "attributes xor block required" unless block.nil?
|
20
|
+
@@registry[model_name] << attributes
|
21
|
+
elsif block
|
22
|
+
raise ArgumentError, "attributes xor block required" unless attributes.nil?
|
23
|
+
@@registry[model_name] << block
|
24
|
+
else
|
25
|
+
raise ArgumentError, "attributes xor block required"
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
class Factory
|
30
|
+
def initialize(test_case)
|
31
|
+
@test_case, @stack = test_case, []
|
32
|
+
end
|
33
|
+
|
34
|
+
def method_missing(method, *args, &block)
|
35
|
+
if method.to_s =~ ::CreateValid::MAGIC_METHOD
|
36
|
+
auto_create_instance($3, # class name
|
37
|
+
$2 == 'valid_', # valid?
|
38
|
+
$1 == 'create', # save to DB?
|
39
|
+
($5.split('_and_') rescue []), # features to append
|
40
|
+
args.shift || {}) # extra attributes to merge
|
41
|
+
else
|
42
|
+
super
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def instance
|
47
|
+
@stack.last
|
48
|
+
end
|
49
|
+
alias i instance
|
50
|
+
|
51
|
+
private
|
52
|
+
|
53
|
+
def auto_create_instance(underscored_class_name, require_valid, save, features, extra_attributes)
|
54
|
+
returning(underscored_class_name.camelize.constantize.new) do |instance|
|
55
|
+
begin
|
56
|
+
@stack << instance
|
57
|
+
augment(instance, features)
|
58
|
+
assert_validity(instance) if require_valid
|
59
|
+
instance.save! if save
|
60
|
+
ensure
|
61
|
+
@stack.pop
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
def assert_validity(model)
|
67
|
+
if @test_case.is_a?(::Test::Unit::TestCase)
|
68
|
+
@test_case.assert(model.valid?)
|
69
|
+
elsif @test_case.nil?
|
70
|
+
raise "Model invalid" unless model.valid?
|
71
|
+
else
|
72
|
+
raise "Don't know how to test model validity with an instance of #{test.class.to_s}"
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
76
|
+
def inheritance_chain(klass)
|
77
|
+
returning([]) do |hierarchy|
|
78
|
+
while klass != ActiveRecord::Base do
|
79
|
+
hierarchy.unshift(klass)
|
80
|
+
klass = klass.superclass
|
81
|
+
end
|
82
|
+
end
|
83
|
+
end
|
84
|
+
|
85
|
+
def magic_suffixes_for_features(*features)
|
86
|
+
[''] + [features].flatten.map { |f| %(_with_#{f}) }
|
87
|
+
end
|
88
|
+
|
89
|
+
def augment(instance, features)
|
90
|
+
hierarchy = inheritance_chain(instance.class)
|
91
|
+
magic_suffixes_for_features(features).each do |suffix|
|
92
|
+
hierarchy.each do |klass|
|
93
|
+
::CreateValid["#{klass.name.underscore}#{suffix}"].each do |params|
|
94
|
+
if params.is_a?(Proc)
|
95
|
+
result = instance_eval(¶ms)
|
96
|
+
merge_attributes(instance, result) if result.is_a?(Hash)
|
97
|
+
elsif params.is_a?(Hash)
|
98
|
+
merge_attributes(instance, params)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
def merge_attributes(instance, attributes)
|
106
|
+
# don't use attributes= so we can set protected attributes and associations
|
107
|
+
attributes.each { |k,v| instance.send(:"#{k}=", v) }
|
108
|
+
end
|
109
|
+
|
110
|
+
def next_sequence
|
111
|
+
::CreateValid.next_sequence
|
112
|
+
end
|
113
|
+
end
|
114
|
+
|
115
|
+
module GlobalHelpers
|
116
|
+
def next_sequence
|
117
|
+
::CreateValid.next_sequence
|
118
|
+
end
|
119
|
+
|
120
|
+
def params_for(model, attributes = nil, &block)
|
121
|
+
::CreateValid.register(model, attributes, &block)
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
data/rails/init.rb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
if defined?(RAILS_ENV) && RAILS_ENV == 'test'
|
2
|
+
class ActiveSupport::TestCase
|
3
|
+
def method_missing_with_create_valid(method, *args)
|
4
|
+
if method.to_s =~ ::CreateValid::MAGIC_METHOD
|
5
|
+
::CreateValid::Factory.new(self).send(method, *args)
|
6
|
+
else
|
7
|
+
method_missing_without_create_valid(method, *args)
|
8
|
+
end
|
9
|
+
end
|
10
|
+
alias_method_chain :method_missing, :create_valid
|
11
|
+
end
|
12
|
+
|
13
|
+
include CreateValid::GlobalHelpers
|
14
|
+
|
15
|
+
if File.exists?(RAILS_ROOT + '/test/factory.rb')
|
16
|
+
require RAILS_ROOT + '/test/factory'
|
17
|
+
end
|
18
|
+
end
|
data/test/helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,85 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: create_valid
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 1
|
9
|
+
version: 0.0.1
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Jason Frame
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-07-07 00:00:00 +01:00
|
18
|
+
default_executable:
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: shoulda
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
version: "0"
|
30
|
+
type: :development
|
31
|
+
version_requirements: *id001
|
32
|
+
description:
|
33
|
+
email: jason@onehackoranother.com
|
34
|
+
executables: []
|
35
|
+
|
36
|
+
extensions: []
|
37
|
+
|
38
|
+
extra_rdoc_files:
|
39
|
+
- LICENSE
|
40
|
+
- README.rdoc
|
41
|
+
files:
|
42
|
+
- .document
|
43
|
+
- .gitignore
|
44
|
+
- LICENSE
|
45
|
+
- README.rdoc
|
46
|
+
- Rakefile
|
47
|
+
- VERSION
|
48
|
+
- create_valid.gemspec
|
49
|
+
- lib/create_valid.rb
|
50
|
+
- rails/init.rb
|
51
|
+
- test/helper.rb
|
52
|
+
- test/test_create_valid.rb
|
53
|
+
has_rdoc: true
|
54
|
+
homepage: http://github.com/jaz303/create_valid
|
55
|
+
licenses: []
|
56
|
+
|
57
|
+
post_install_message:
|
58
|
+
rdoc_options:
|
59
|
+
- --charset=UTF-8
|
60
|
+
require_paths:
|
61
|
+
- lib
|
62
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
63
|
+
requirements:
|
64
|
+
- - ">="
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
segments:
|
67
|
+
- 0
|
68
|
+
version: "0"
|
69
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
70
|
+
requirements:
|
71
|
+
- - ">="
|
72
|
+
- !ruby/object:Gem::Version
|
73
|
+
segments:
|
74
|
+
- 0
|
75
|
+
version: "0"
|
76
|
+
requirements: []
|
77
|
+
|
78
|
+
rubyforge_project:
|
79
|
+
rubygems_version: 1.3.6
|
80
|
+
signing_key:
|
81
|
+
specification_version: 3
|
82
|
+
summary: An object for factory for Ruby/Rails, supporting Test::Unit
|
83
|
+
test_files:
|
84
|
+
- test/helper.rb
|
85
|
+
- test/test_create_valid.rb
|