doublecheck_view 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +9 -0
- data/.travis.yml +4 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +68 -0
- data/Rakefile +10 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/doublecheck_view.gemspec +26 -0
- data/lib/doublecheck_view/doublecheck.rb +71 -0
- data/lib/doublecheck_view/version.rb +3 -0
- data/lib/doublecheck_view.rb +6 -0
- metadata +112 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: f70b4558ff3f16e09f69bb716938ec3cddbfa76d
|
4
|
+
data.tar.gz: 9c0de1e45a2c8b4fa2250a4e3f8ffe3b675909f5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: f5d67d1176af84bf269387de52f47687e6e0e1af526f625c1ec96759ca132703e4a218a6b4a06e600be1087f4e0ff9c088c60faf3b85b21dc3bf65d74b383e2c
|
7
|
+
data.tar.gz: 56b9967d522729a35836b22fa6f249f05b16aa7457b374bbd3231af450e778b5c2dc389fbc2d9e830c154faf2f537eb0a1dcdc9c74fe582f69a8807682795da8
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2016 Jack Christensen
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,68 @@
|
|
1
|
+
# Doublecheck View
|
2
|
+
|
3
|
+
doublecheck_view is a Ruby gem that makes it easy to validate doublecheck views
|
4
|
+
during automated tests. See https://github.com/jackc/doublecheck for more
|
5
|
+
information about the doublecheck view pattern.
|
6
|
+
|
7
|
+
## Installation
|
8
|
+
|
9
|
+
Add this line to your application's Gemfile:
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
gem 'doublecheck_view'
|
13
|
+
```
|
14
|
+
|
15
|
+
And then execute:
|
16
|
+
|
17
|
+
$ bundle
|
18
|
+
|
19
|
+
Or install it yourself as:
|
20
|
+
|
21
|
+
$ gem install doublecheck_view
|
22
|
+
|
23
|
+
## Usage
|
24
|
+
|
25
|
+
You can check for errors manually at any time. The following code will select from every view in the `doublecheck` schema and `check_result` will only be valid if no rows are returned from any view.
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
doublecheck = DoublecheckView::Doublecheck.new
|
29
|
+
check_result = doublecheck.check
|
30
|
+
assert check_result.valid?, check_result.errors
|
31
|
+
```
|
32
|
+
|
33
|
+
However, the preferred approach is to run doublecheck after every test that uses
|
34
|
+
the database.
|
35
|
+
|
36
|
+
```ruby
|
37
|
+
# Inside a MiniTest or ActiveSupport::TestCase class body
|
38
|
+
|
39
|
+
def before_teardown
|
40
|
+
doublecheck = DoublecheckView::Doublecheck.new
|
41
|
+
check_result = doublecheck.check
|
42
|
+
assert check_result.valid?, check_result.errors
|
43
|
+
super
|
44
|
+
end
|
45
|
+
```
|
46
|
+
|
47
|
+
Or for RSpec:
|
48
|
+
|
49
|
+
```ruby
|
50
|
+
RSpec.configure do |config|
|
51
|
+
# ...
|
52
|
+
config.before(:each) do
|
53
|
+
doublecheck = DoublecheckView::Doublecheck.new
|
54
|
+
check_result = doublecheck.check
|
55
|
+
expect(check_result).to be_valid, "doublecheck views: #{check_result.errors}"
|
56
|
+
end
|
57
|
+
end
|
58
|
+
```
|
59
|
+
|
60
|
+
## Contributing
|
61
|
+
|
62
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/jackc/doublecheck.
|
63
|
+
|
64
|
+
|
65
|
+
## License
|
66
|
+
|
67
|
+
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
68
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "doublecheck_view"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
data/bin/setup
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'doublecheck_view/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "doublecheck_view"
|
8
|
+
spec.version = DoublecheckView::VERSION
|
9
|
+
spec.authors = ["Jack Christensen"]
|
10
|
+
spec.email = ["jack@jackchristensen.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Test doublecheck views with ActiveRecord}
|
13
|
+
spec.homepage = "https://github.com/jackc/doublecheck_view"
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
+
spec.bindir = "exe"
|
18
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency 'activerecord', "> 3.2"
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.11"
|
24
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
25
|
+
spec.add_development_dependency "minitest", "~> 5.0"
|
26
|
+
end
|
@@ -0,0 +1,71 @@
|
|
1
|
+
module DoublecheckView
|
2
|
+
class ViewResult
|
3
|
+
attr_reader :name, :rows
|
4
|
+
|
5
|
+
def initialize(name, rows)
|
6
|
+
@name = name
|
7
|
+
@rows = rows
|
8
|
+
end
|
9
|
+
|
10
|
+
def valid?
|
11
|
+
rows.empty?
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
class CheckResult
|
16
|
+
attr_reader :view_results
|
17
|
+
|
18
|
+
def initialize(view_results)
|
19
|
+
@view_results = view_results
|
20
|
+
end
|
21
|
+
|
22
|
+
def valid?
|
23
|
+
view_results.all?(&:valid?)
|
24
|
+
end
|
25
|
+
|
26
|
+
def errors
|
27
|
+
view_results.reject(&:valid?).each_with_object({}) do |vr, hash|
|
28
|
+
hash[vr.name] = vr.rows
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
class Doublecheck
|
34
|
+
attr_reader :schema
|
35
|
+
attr_reader :views
|
36
|
+
|
37
|
+
def initialize(schema: "doublecheck")
|
38
|
+
@schema = schema
|
39
|
+
@views = get_views
|
40
|
+
end
|
41
|
+
|
42
|
+
def check(views: self.views)
|
43
|
+
view_results = views.map do |v|
|
44
|
+
rows = conn.select_all("select * from #{quote_identifier schema}.#{quote_identifier v}").to_a
|
45
|
+
ViewResult.new v, rows
|
46
|
+
end
|
47
|
+
|
48
|
+
CheckResult.new view_results
|
49
|
+
end
|
50
|
+
|
51
|
+
private
|
52
|
+
|
53
|
+
def get_views
|
54
|
+
conn.select_values <<-SQL
|
55
|
+
select table_name from information_schema.views where table_schema=#{quote_value schema} order by 1
|
56
|
+
SQL
|
57
|
+
end
|
58
|
+
|
59
|
+
def conn
|
60
|
+
ActiveRecord::Base.connection
|
61
|
+
end
|
62
|
+
|
63
|
+
def quote_value(value)
|
64
|
+
conn.quote value
|
65
|
+
end
|
66
|
+
|
67
|
+
def quote_identifier(ident)
|
68
|
+
conn.quote_column_name ident
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
metadata
ADDED
@@ -0,0 +1,112 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: doublecheck_view
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jack Christensen
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-05-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: activerecord
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.2'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.2'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.11'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.11'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: minitest
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '5.0'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '5.0'
|
69
|
+
description:
|
70
|
+
email:
|
71
|
+
- jack@jackchristensen.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- ".gitignore"
|
77
|
+
- ".travis.yml"
|
78
|
+
- Gemfile
|
79
|
+
- LICENSE.txt
|
80
|
+
- README.md
|
81
|
+
- Rakefile
|
82
|
+
- bin/console
|
83
|
+
- bin/setup
|
84
|
+
- doublecheck_view.gemspec
|
85
|
+
- lib/doublecheck_view.rb
|
86
|
+
- lib/doublecheck_view/doublecheck.rb
|
87
|
+
- lib/doublecheck_view/version.rb
|
88
|
+
homepage: https://github.com/jackc/doublecheck_view
|
89
|
+
licenses:
|
90
|
+
- MIT
|
91
|
+
metadata: {}
|
92
|
+
post_install_message:
|
93
|
+
rdoc_options: []
|
94
|
+
require_paths:
|
95
|
+
- lib
|
96
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
97
|
+
requirements:
|
98
|
+
- - ">="
|
99
|
+
- !ruby/object:Gem::Version
|
100
|
+
version: '0'
|
101
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - ">="
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '0'
|
106
|
+
requirements: []
|
107
|
+
rubyforge_project:
|
108
|
+
rubygems_version: 2.5.1
|
109
|
+
signing_key:
|
110
|
+
specification_version: 4
|
111
|
+
summary: Test doublecheck views with ActiveRecord
|
112
|
+
test_files: []
|