Skip to content

Commit ff54663

Browse files
author
=
committed
Added initial test suite and implementation.
1 parent 1d620e7 commit ff54663

12 files changed

+215
-16
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Jan 11 2012
2+
3+
* Added initial implementation with a small set of built-in data bluffs

bluff.gemspec

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
# -*- encoding: utf-8 -*-
2-
$:.push File.expand_path("../lib", __FILE__)
3-
require "bluff/version"
2+
$:.push File.expand_path('../lib', __FILE__)
3+
require 'bluff/version'
44

55
Gem::Specification.new do |s|
6-
s.name = "bluff"
6+
s.name = 'bluff'
77
s.version = Bluff::VERSION
8-
s.authors = ["Ryan Mohr"]
9-
s.email = ["[email protected]"]
10-
s.homepage = ""
8+
s.authors = ['Ryan Mohr']
9+
s.email = ['[email protected]']
10+
s.homepage = ''
1111
s.summary = %q{A single source of lies for all your testing needs}
1212
s.description = %q{}
1313

14-
s.rubyforge_project = "bluff"
14+
s.rubyforge_project = 'bluff'
1515

1616
s.files = `git ls-files`.split("\n")
17-
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18-
s.require_paths = ["lib"]
19-
20-
# specify any dependencies here; for example:
21-
# s.add_development_dependency "rspec"
22-
# s.add_runtime_dependency "rest-client"
23-
end
17+
s.test_files = `git ls-files -- spec/*`.split("\n")
18+
s.require_paths = ['lib']
19+
20+
s.add_development_dependency 'activesupport', '~> 3.0'
21+
s.add_development_dependency 'rspec', '~> 2.8' # can't we just use rspec instead?
22+
s.add_development_dependency 'faker', '~> 1.0'
23+
end

lib/bluff.rb

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,13 @@
1-
require "bluff/version"
1+
require 'active_support'
2+
require 'active_support/inflector'
3+
4+
require 'bluff/version'
5+
require 'bluff/configuration'
6+
require 'bluff/builder'
27

38
module Bluff
9+
extend Bluff::Configuration::ClassMethods
10+
extend Bluff::Builder::ClassMethods
411
end
12+
13+
require 'bluff/bluffs/data_bluffs'

lib/bluff/bluffs/data_bluffs.rb

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
require 'faker'
2+
3+
# people
4+
Bluff.for(:name) { ::Faker::Name.name }
5+
Bluff.for(:username) {|name = nil| (name ||= Bluff.name).parameterize }
6+
Bluff.for(:email) {|name = nil| ::Faker::Internet.email(name) }
7+
8+
# companies
9+
Bluff.for(:company_name) { ::Faker::Company.name }
10+
11+
# words
12+
Bluff.for(:words) {|count = 3| ::Faker::Lorem.words(count) }
13+
Bluff.for(:phrase) { ::Faker::Company.bs }

lib/bluff/builder.rb

+74
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
module Bluff
2+
module Builder
3+
module ClassMethods
4+
# def insist(field)
5+
# raise ArgumentError, "#{field} cannot be bluffed for #{target}"
6+
# end
7+
8+
# options: class_name
9+
def for(field, options = {}, &block)
10+
options = {:bang => true}.merge(options)
11+
12+
extend_bluff(field, options, &block)
13+
extend_target(field, options)
14+
end
15+
16+
private
17+
def extend_bluff(field, options, &block)
18+
define_bluff(field, &block)
19+
define_bluff_bang(field) if options[:bang]
20+
end
21+
22+
def define_bluff(field, &block)
23+
define_singleton_method(field) do |*args|
24+
bluffed_object = nil
25+
26+
config.max_attempts.times do
27+
bluffed_object = block.call(*args)
28+
break if !bluffed_object.respond_to?(:valid?) || bluffed_object.valid?
29+
puts "!!!! FAILED BLUFF -- REATTEMPTING"
30+
end
31+
32+
bluffed_object
33+
end
34+
end
35+
36+
def define_bluff_bang(field)
37+
define_singleton_method "#{field}!" do |*args|
38+
send(field, *args).tap do |record|
39+
ActiveRecord::Base.transaction do
40+
record.class.reflect_on_all_associations(:belongs_to).each do |reflection|
41+
association = record.send(reflection.name)
42+
association.save! if association && association.new_record?
43+
end
44+
45+
record.save!
46+
end
47+
end
48+
end
49+
end
50+
51+
def extend_target(field, options)
52+
class_name = options[:class_name] || field.to_s.classify
53+
54+
if Kernel.const_defined?(class_name)
55+
klass = Kernel.const_get(class_name)
56+
57+
# just forward the calls back to Bluff
58+
klass.define_singleton_method :bluff do |*args|
59+
Bluff.send(field, *args)
60+
end
61+
62+
if options[:bang]
63+
klass.define_singleton_method :bluff! do |*args|
64+
Bluff.send("#{field}!", *args)
65+
end
66+
end
67+
else
68+
# not a big deal. bluff might be data instead of a model.
69+
# puts "Bluff class not found: #{class_name}"
70+
end
71+
end
72+
end
73+
end
74+
end

lib/bluff/configuration.rb

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module Bluff
2+
module Configuration
3+
class Base
4+
attr_accessor :max_attempts
5+
6+
def initialize
7+
# since we're faking the data but using real objects, there may be times where
8+
# an object fails to validate due to duplicates etc. Bluff will retry up to
9+
# max_attempts times before calling it quits
10+
@max_attempts = 10
11+
end
12+
end
13+
14+
module ClassMethods
15+
def config
16+
@config ||= Configuration::Base.new
17+
end
18+
end
19+
end
20+
end

lib/bluff/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module Bluff
2-
VERSION = "0.0.1"
2+
VERSION = "0.0.2"
33
end

spec/models/api_spec.rb

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
require 'spec_helper'
2+
3+
describe Bluff do
4+
# define the basic data API
5+
describe '.for' do
6+
context 'at the basic level' do
7+
it 'accepts a target and a block and returns the value of the block' do
8+
Bluff.for(:foo) { 'bar' }
9+
Bluff.foo.should eq('bar')
10+
end
11+
end
12+
end
13+
14+
describe 'data' do
15+
context 'when requesting a defined data bluff' do
16+
bluffs = [
17+
#
18+
# alright to add to these but DO NOT REMOVE them without
19+
# good reason and without bumping the major version
20+
#
21+
22+
# people
23+
:name,
24+
:username,
25+
:email,
26+
27+
# companies
28+
:company_name,
29+
30+
# words
31+
:words,
32+
:phrase
33+
]
34+
35+
bluffs.each do |target|
36+
specify { should bluff_for(target) }
37+
end
38+
end
39+
40+
context 'when requesting an undefined data bluff' do
41+
it 'should raise an exception' do
42+
lambda{ Bluff.missing }.should raise_error
43+
end
44+
end
45+
end
46+
end

spec/models/data_bluffs_spec.rb

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
require 'spec_helper'
2+
3+
describe Bluff do
4+
end

spec/spec_helper.rb

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
SPEC_ROOT = File.expand_path(File.dirname(__FILE__)) # ENV["RAILS_ENV"] ||= 'test'
2+
#
3+
# require_relative '../../config/environment'
4+
# require 'rspec/rails'
5+
6+
require_relative '../lib/bluff.rb'
7+
8+
# Requires supporting ruby files with custom matchers and macros, etc,
9+
# in spec/support/ and its subdirectories.
10+
%w(support bluffs).each do |dir|
11+
Dir[File.join(SPEC_ROOT, dir, '**', '*.rb')].each {|f| require f}
12+
end
13+
14+
RSpec.configure do |config|
15+
config.mock_with :rspec
16+
end

spec/support/matchers/bluff.rb

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
RSpec::Matchers.define :bluff_for do |expected|
2+
match do
3+
begin
4+
Bluff.send(expected)
5+
rescue
6+
false
7+
end
8+
end
9+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
RSpec::Matchers.define :bluff_instance_of do |expected|
2+
match do |actual|
3+
actual.should be_an_instance_of(ActiveRecord::Relation)
4+
end
5+
end

0 commit comments

Comments
 (0)