activegroonga 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/AUTHORS +1 -0
- data/NEWS.ja.rdoc +5 -0
- data/NEWS.rdoc +5 -0
- data/README.ja.rdoc +49 -0
- data/README.rdoc +49 -0
- data/Rakefile +175 -0
- data/lib/active_groonga.rb +75 -0
- data/lib/active_groonga/aggregations.rb +30 -0
- data/lib/active_groonga/associations.rb +93 -0
- data/lib/active_groonga/associations/belongs_to_association.rb +25 -0
- data/lib/active_groonga/attribute_methods.rb +36 -0
- data/lib/active_groonga/base.rb +1579 -0
- data/lib/active_groonga/column.rb +107 -0
- data/lib/active_groonga/dirty.rb +30 -0
- data/lib/active_groonga/fixtures.rb +92 -0
- data/lib/active_groonga/migration.rb +150 -0
- data/lib/active_groonga/rails_support.rb +31 -0
- data/lib/active_groonga/reflection.rb +30 -0
- data/lib/active_groonga/schema.rb +314 -0
- data/lib/active_groonga/schema_dumper.rb +147 -0
- data/lib/active_groonga/tasks.rb +16 -0
- data/lib/active_groonga/tasks/groonga.rake +162 -0
- data/lib/active_groonga/test_case.rb +21 -0
- data/lib/active_groonga/test_help.rb +21 -0
- data/lib/active_groonga/timestamp.rb +30 -0
- data/lib/active_groonga/validations.rb +26 -0
- data/lib/active_groonga/version.rb +24 -0
- data/license/LGPL +504 -0
- data/rails/README +28 -0
- data/rails/init.rb +70 -0
- data/rails_generators/model_groonga/USAGE +28 -0
- data/rails_generators/model_groonga/model_groonga_generator.rb +45 -0
- data/rails_generators/model_groonga/templates/fixtures.yml +17 -0
- data/rails_generators/model_groonga/templates/migration.rb +16 -0
- data/rails_generators/model_groonga/templates/model.rb +2 -0
- data/rails_generators/model_groonga/templates/unit_test.rb +8 -0
- data/test-unit/Rakefile +35 -0
- data/test-unit/TODO +5 -0
- data/test-unit/bin/testrb +5 -0
- data/test-unit/html/classic.html +15 -0
- data/test-unit/html/index.html +25 -0
- data/test-unit/html/index.html.ja +27 -0
- data/test-unit/lib/test/unit.rb +342 -0
- data/test-unit/lib/test/unit/assertionfailederror.rb +14 -0
- data/test-unit/lib/test/unit/assertions.rb +1149 -0
- data/test-unit/lib/test/unit/attribute.rb +125 -0
- data/test-unit/lib/test/unit/autorunner.rb +306 -0
- data/test-unit/lib/test/unit/collector.rb +43 -0
- data/test-unit/lib/test/unit/collector/descendant.rb +23 -0
- data/test-unit/lib/test/unit/collector/dir.rb +108 -0
- data/test-unit/lib/test/unit/collector/load.rb +135 -0
- data/test-unit/lib/test/unit/collector/objectspace.rb +34 -0
- data/test-unit/lib/test/unit/color-scheme.rb +86 -0
- data/test-unit/lib/test/unit/color.rb +96 -0
- data/test-unit/lib/test/unit/diff.rb +538 -0
- data/test-unit/lib/test/unit/error.rb +124 -0
- data/test-unit/lib/test/unit/exceptionhandler.rb +39 -0
- data/test-unit/lib/test/unit/failure.rb +110 -0
- data/test-unit/lib/test/unit/fixture.rb +176 -0
- data/test-unit/lib/test/unit/notification.rb +125 -0
- data/test-unit/lib/test/unit/omission.rb +143 -0
- data/test-unit/lib/test/unit/pending.rb +146 -0
- data/test-unit/lib/test/unit/priority.rb +161 -0
- data/test-unit/lib/test/unit/runner/console.rb +52 -0
- data/test-unit/lib/test/unit/runner/emacs.rb +8 -0
- data/test-unit/lib/test/unit/testcase.rb +360 -0
- data/test-unit/lib/test/unit/testresult.rb +89 -0
- data/test-unit/lib/test/unit/testsuite.rb +110 -0
- data/test-unit/lib/test/unit/ui/console/outputlevel.rb +14 -0
- data/test-unit/lib/test/unit/ui/console/testrunner.rb +220 -0
- data/test-unit/lib/test/unit/ui/emacs/testrunner.rb +49 -0
- data/test-unit/lib/test/unit/ui/testrunner.rb +20 -0
- data/test-unit/lib/test/unit/ui/testrunnermediator.rb +77 -0
- data/test-unit/lib/test/unit/ui/testrunnerutilities.rb +41 -0
- data/test-unit/lib/test/unit/util/backtracefilter.rb +41 -0
- data/test-unit/lib/test/unit/util/method-owner-finder.rb +28 -0
- data/test-unit/lib/test/unit/util/observable.rb +90 -0
- data/test-unit/lib/test/unit/util/procwrapper.rb +48 -0
- data/test-unit/lib/test/unit/version.rb +7 -0
- data/test-unit/sample/adder.rb +13 -0
- data/test-unit/sample/subtracter.rb +12 -0
- data/test-unit/sample/tc_adder.rb +18 -0
- data/test-unit/sample/tc_subtracter.rb +18 -0
- data/test-unit/sample/test_user.rb +22 -0
- data/test-unit/sample/ts_examples.rb +7 -0
- data/test-unit/test/collector/test-descendant.rb +135 -0
- data/test-unit/test/collector/test-load.rb +333 -0
- data/test-unit/test/collector/test_dir.rb +406 -0
- data/test-unit/test/collector/test_objectspace.rb +98 -0
- data/test-unit/test/run-test.rb +13 -0
- data/test-unit/test/test-attribute.rb +86 -0
- data/test-unit/test/test-color-scheme.rb +56 -0
- data/test-unit/test/test-color.rb +47 -0
- data/test-unit/test/test-diff.rb +477 -0
- data/test-unit/test/test-emacs-runner.rb +60 -0
- data/test-unit/test/test-fixture.rb +287 -0
- data/test-unit/test/test-notification.rb +33 -0
- data/test-unit/test/test-omission.rb +81 -0
- data/test-unit/test/test-pending.rb +70 -0
- data/test-unit/test/test-priority.rb +119 -0
- data/test-unit/test/test_assertions.rb +1082 -0
- data/test-unit/test/test_error.rb +26 -0
- data/test-unit/test/test_failure.rb +33 -0
- data/test-unit/test/test_testcase.rb +478 -0
- data/test-unit/test/test_testresult.rb +113 -0
- data/test-unit/test/test_testsuite.rb +129 -0
- data/test-unit/test/testunit-test-util.rb +14 -0
- data/test-unit/test/ui/test_testrunmediator.rb +20 -0
- data/test-unit/test/util/test-method-owner-finder.rb +38 -0
- data/test-unit/test/util/test_backtracefilter.rb +41 -0
- data/test-unit/test/util/test_observable.rb +102 -0
- data/test-unit/test/util/test_procwrapper.rb +36 -0
- data/test/active-groonga-test-utils.rb +234 -0
- data/test/fixtures/bookmark.rb +2 -0
- data/test/fixtures/task.rb +2 -0
- data/test/fixtures/user.rb +2 -0
- data/test/run-test.rb +51 -0
- data/test/test-associations.rb +24 -0
- data/test/test-base.rb +194 -0
- data/test/test-schema.rb +49 -0
- metadata +192 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
require 'test/unit/collector'
|
|
2
|
+
|
|
3
|
+
module Test
|
|
4
|
+
module Unit
|
|
5
|
+
module Collector
|
|
6
|
+
class Descendant
|
|
7
|
+
include Collector
|
|
8
|
+
|
|
9
|
+
NAME = 'collected from the subclasses of TestCase'
|
|
10
|
+
|
|
11
|
+
def collect(name=NAME)
|
|
12
|
+
suite = TestSuite.new(name)
|
|
13
|
+
sub_suites = []
|
|
14
|
+
TestCase::DESCENDANTS.each do |descendant_test_case|
|
|
15
|
+
add_suite(sub_suites, descendant_test_case.suite)
|
|
16
|
+
end
|
|
17
|
+
sort(sub_suites).each {|s| suite << s}
|
|
18
|
+
suite
|
|
19
|
+
end
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
end
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
require 'test/unit/testsuite'
|
|
2
|
+
require 'test/unit/collector'
|
|
3
|
+
|
|
4
|
+
module Test
|
|
5
|
+
module Unit
|
|
6
|
+
module Collector
|
|
7
|
+
class Dir
|
|
8
|
+
include Collector
|
|
9
|
+
|
|
10
|
+
attr_reader :pattern, :exclude
|
|
11
|
+
attr_accessor :base
|
|
12
|
+
|
|
13
|
+
def initialize(dir=::Dir, file=::File, object_space=::ObjectSpace, req=nil)
|
|
14
|
+
super()
|
|
15
|
+
@dir = dir
|
|
16
|
+
@file = file
|
|
17
|
+
@object_space = object_space
|
|
18
|
+
@req = req
|
|
19
|
+
@pattern = [/\btest_.*\.rb\Z/m]
|
|
20
|
+
@exclude = []
|
|
21
|
+
@base = nil
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
def collect(*from)
|
|
25
|
+
basedir = @base
|
|
26
|
+
$:.push(basedir) if basedir
|
|
27
|
+
if(from.empty?)
|
|
28
|
+
recursive_collect('.', find_test_cases)
|
|
29
|
+
elsif(from.size == 1)
|
|
30
|
+
recursive_collect(from.first, find_test_cases)
|
|
31
|
+
else
|
|
32
|
+
suites = []
|
|
33
|
+
from.each do |f|
|
|
34
|
+
suite = recursive_collect(f, find_test_cases)
|
|
35
|
+
suites << suite unless(suite.tests.empty?)
|
|
36
|
+
end
|
|
37
|
+
suite = TestSuite.new("[#{from.join(', ')}]")
|
|
38
|
+
sort(suites).each{|s| suite << s}
|
|
39
|
+
suite
|
|
40
|
+
end
|
|
41
|
+
ensure
|
|
42
|
+
$:.delete_at($:.rindex(basedir)) if basedir
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
def find_test_cases(ignore=[])
|
|
46
|
+
cases = []
|
|
47
|
+
@object_space.each_object(Class) do |c|
|
|
48
|
+
cases << c if(c < TestCase && !ignore.include?(c))
|
|
49
|
+
end
|
|
50
|
+
ignore.concat(cases)
|
|
51
|
+
cases
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
def recursive_collect(name, already_gathered)
|
|
55
|
+
sub_suites = []
|
|
56
|
+
path = realdir(name)
|
|
57
|
+
if @file.directory?(path)
|
|
58
|
+
dir_name = name unless name == '.'
|
|
59
|
+
@dir.entries(path).each do |e|
|
|
60
|
+
next if(e == '.' || e == '..')
|
|
61
|
+
e_name = dir_name ? @file.join(dir_name, e) : e
|
|
62
|
+
if @file.directory?(realdir(e_name))
|
|
63
|
+
next if /\A(?:CVS|\.svn)\z/ =~ e
|
|
64
|
+
sub_suite = recursive_collect(e_name, already_gathered)
|
|
65
|
+
sub_suites << sub_suite unless(sub_suite.empty?)
|
|
66
|
+
else
|
|
67
|
+
next if /~\z/ =~ e_name or /\A\.\#/ =~ e
|
|
68
|
+
if @pattern and !@pattern.empty?
|
|
69
|
+
next unless @pattern.any? {|pat| pat =~ e_name}
|
|
70
|
+
end
|
|
71
|
+
if @exclude and !@exclude.empty?
|
|
72
|
+
next if @exclude.any? {|pat| pat =~ e_name}
|
|
73
|
+
end
|
|
74
|
+
collect_file(e_name, sub_suites, already_gathered)
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
else
|
|
78
|
+
collect_file(name, sub_suites, already_gathered)
|
|
79
|
+
end
|
|
80
|
+
suite = TestSuite.new(@file.basename(name))
|
|
81
|
+
sort(sub_suites).each{|s| suite << s}
|
|
82
|
+
suite
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
def collect_file(name, suites, already_gathered)
|
|
86
|
+
dir = @file.dirname(@file.expand_path(name, @base))
|
|
87
|
+
$:.unshift(dir)
|
|
88
|
+
if(@req)
|
|
89
|
+
@req.require(name)
|
|
90
|
+
else
|
|
91
|
+
require(name)
|
|
92
|
+
end
|
|
93
|
+
find_test_cases(already_gathered).each{|t| add_suite(suites, t.suite)}
|
|
94
|
+
ensure
|
|
95
|
+
$:.delete_at($:.rindex(dir)) if(dir)
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
def realdir(path)
|
|
99
|
+
if @base
|
|
100
|
+
@file.join(@base, path)
|
|
101
|
+
else
|
|
102
|
+
path
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
end
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
end
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
require 'pathname'
|
|
2
|
+
|
|
3
|
+
require 'test/unit/testsuite'
|
|
4
|
+
require 'test/unit/collector'
|
|
5
|
+
|
|
6
|
+
module Test
|
|
7
|
+
module Unit
|
|
8
|
+
module Collector
|
|
9
|
+
class Load
|
|
10
|
+
include Collector
|
|
11
|
+
|
|
12
|
+
attr_reader :patterns, :excludes, :base
|
|
13
|
+
|
|
14
|
+
def initialize
|
|
15
|
+
super
|
|
16
|
+
@system_excludes = [/~\z/, /\A\.\#/]
|
|
17
|
+
@system_directory_excludes = [/\A(?:CVS|\.svn)\z/]
|
|
18
|
+
@patterns = [/\Atest[_\-].+\.rb\z/m]
|
|
19
|
+
@excludes = []
|
|
20
|
+
@base = nil
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def base=(base)
|
|
24
|
+
base = Pathname(base) unless base.nil?
|
|
25
|
+
@base = base
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def collect(*froms)
|
|
29
|
+
add_load_path(@base) do
|
|
30
|
+
froms = ["."] if froms.empty?
|
|
31
|
+
test_suites = froms.collect do |from|
|
|
32
|
+
test_suite = collect_recursive(from, find_test_cases)
|
|
33
|
+
test_suite = nil if test_suite.tests.empty?
|
|
34
|
+
test_suite
|
|
35
|
+
end.compact
|
|
36
|
+
|
|
37
|
+
if test_suites.size > 1
|
|
38
|
+
test_suite = TestSuite.new("[#{froms.join(', ')}]")
|
|
39
|
+
sort(test_suites).each do |sub_test_suite|
|
|
40
|
+
test_suite << sub_test_suite
|
|
41
|
+
end
|
|
42
|
+
test_suite
|
|
43
|
+
else
|
|
44
|
+
test_suites.first
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
def find_test_cases(ignore=[])
|
|
50
|
+
test_cases = []
|
|
51
|
+
TestCase::DESCENDANTS.each do |test_case|
|
|
52
|
+
test_cases << test_case unless ignore.include?(test_case)
|
|
53
|
+
end
|
|
54
|
+
ignore.concat(test_cases)
|
|
55
|
+
test_cases
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
private
|
|
59
|
+
def collect_recursive(name, already_gathered)
|
|
60
|
+
sub_test_suites = []
|
|
61
|
+
|
|
62
|
+
path = resolve_path(name)
|
|
63
|
+
if path.directory?
|
|
64
|
+
directories, files = path.children.partition do |child|
|
|
65
|
+
child.directory?
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
files.each do |child|
|
|
69
|
+
next if excluded_file?(child.basename.to_s)
|
|
70
|
+
collect_file(child, sub_test_suites, already_gathered)
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
directories.each do |child|
|
|
74
|
+
next if excluded_directory?(child.basename.to_s)
|
|
75
|
+
sub_test_suite = collect_recursive(child, already_gathered)
|
|
76
|
+
sub_test_suites << sub_test_suite unless sub_test_suite.empty?
|
|
77
|
+
end
|
|
78
|
+
else
|
|
79
|
+
collect_file(path, sub_test_suites, already_gathered)
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
test_suite = TestSuite.new(path.basename.to_s)
|
|
83
|
+
sort(sub_test_suites).each do |sub_test_suite|
|
|
84
|
+
test_suite << sub_test_suite
|
|
85
|
+
end
|
|
86
|
+
test_suite
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
def collect_file(path, test_suites, already_gathered)
|
|
90
|
+
add_load_path(path.expand_path.dirname) do
|
|
91
|
+
require(path.to_s)
|
|
92
|
+
find_test_cases(already_gathered).each do |test_case|
|
|
93
|
+
add_suite(test_suites, test_case.suite)
|
|
94
|
+
end
|
|
95
|
+
end
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
def resolve_path(path)
|
|
99
|
+
if @base
|
|
100
|
+
@base + path
|
|
101
|
+
else
|
|
102
|
+
Pathname(path)
|
|
103
|
+
end
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
def add_load_path(path)
|
|
107
|
+
$LOAD_PATH.push(path.to_s) if path
|
|
108
|
+
yield
|
|
109
|
+
ensure
|
|
110
|
+
$LOAD_PATH.delete_at($LOAD_PATH.rindex(path.to_s)) if path
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
def excluded_directory?(base)
|
|
114
|
+
@system_directory_excludes.any? {|pattern| pattern =~ base}
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
def excluded_file?(base)
|
|
118
|
+
return true if @system_excludes.any? {|pattern| pattern =~ base}
|
|
119
|
+
|
|
120
|
+
patterns = @patterns || []
|
|
121
|
+
unless patterns.empty?
|
|
122
|
+
return true unless patterns.any? {|pattern| pattern =~ base}
|
|
123
|
+
end
|
|
124
|
+
|
|
125
|
+
excludes = @excludes || []
|
|
126
|
+
unless excludes.empty?
|
|
127
|
+
return true if excludes.any? {|pattern| pattern =~ base}
|
|
128
|
+
end
|
|
129
|
+
|
|
130
|
+
false
|
|
131
|
+
end
|
|
132
|
+
end
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
end
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
# Author:: Nathaniel Talbott.
|
|
2
|
+
# Copyright:: Copyright (c) 2000-2003 Nathaniel Talbott. All rights reserved.
|
|
3
|
+
# License:: Ruby license.
|
|
4
|
+
|
|
5
|
+
require 'test/unit/collector'
|
|
6
|
+
|
|
7
|
+
module Test
|
|
8
|
+
module Unit
|
|
9
|
+
module Collector
|
|
10
|
+
class ObjectSpace
|
|
11
|
+
include Collector
|
|
12
|
+
|
|
13
|
+
NAME = 'collected from the ObjectSpace'
|
|
14
|
+
|
|
15
|
+
def initialize(source=::ObjectSpace)
|
|
16
|
+
super()
|
|
17
|
+
@source = source
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
def collect(name=NAME)
|
|
21
|
+
suite = TestSuite.new(name)
|
|
22
|
+
sub_suites = []
|
|
23
|
+
@source.each_object(Class) do |klass|
|
|
24
|
+
if(Test::Unit::TestCase > klass)
|
|
25
|
+
add_suite(sub_suites, klass.suite)
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
sort(sub_suites).each{|s| suite << s}
|
|
29
|
+
suite
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
end
|
|
33
|
+
end
|
|
34
|
+
end
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
require 'test/unit/color'
|
|
2
|
+
|
|
3
|
+
module Test
|
|
4
|
+
module Unit
|
|
5
|
+
class ColorScheme
|
|
6
|
+
include Enumerable
|
|
7
|
+
|
|
8
|
+
class << self
|
|
9
|
+
@@default = nil
|
|
10
|
+
def default
|
|
11
|
+
@@default ||= new("success" => Color.new("green", :bold => true),
|
|
12
|
+
"failure" => Color.new("red", :bold => true),
|
|
13
|
+
"pending" => Color.new("magenta", :bold => true),
|
|
14
|
+
"omission" => Color.new("blue", :bold => true),
|
|
15
|
+
"notification" => Color.new("cyan", :bold => true),
|
|
16
|
+
"error" => Color.new("yellow", :bold => true) +
|
|
17
|
+
Color.new("black", :foreground => false))
|
|
18
|
+
end
|
|
19
|
+
|
|
20
|
+
@@schemes = {}
|
|
21
|
+
def all
|
|
22
|
+
@@schemes.merge("default" => default)
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def [](id)
|
|
26
|
+
@@schemes[id.to_s]
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def []=(id, scheme_or_spec)
|
|
30
|
+
if scheme_or_spec.is_a?(self)
|
|
31
|
+
scheme = scheme_or_spec
|
|
32
|
+
else
|
|
33
|
+
scheme = new(scheme_or_spec)
|
|
34
|
+
end
|
|
35
|
+
@@schemes[id.to_s] = scheme
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def initialize(scheme_spec)
|
|
40
|
+
@scheme = {}
|
|
41
|
+
scheme_spec.each do |key, color_spec|
|
|
42
|
+
self[key] = color_spec
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
def [](name)
|
|
47
|
+
@scheme[name.to_s]
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
def []=(name, color_spec)
|
|
51
|
+
@scheme[name.to_s] = make_color(color_spec)
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
def each(&block)
|
|
55
|
+
@scheme.each(&block)
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
def to_hash
|
|
59
|
+
hash = {}
|
|
60
|
+
@scheme.each do |key, color|
|
|
61
|
+
hash[key] = color
|
|
62
|
+
end
|
|
63
|
+
hash
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
private
|
|
67
|
+
def make_color(color_spec)
|
|
68
|
+
if color_spec.is_a?(Color) or color_spec.is_a?(MixColor)
|
|
69
|
+
color_spec
|
|
70
|
+
else
|
|
71
|
+
color_name = nil
|
|
72
|
+
normalized_color_spec = {}
|
|
73
|
+
color_spec.each do |key, value|
|
|
74
|
+
key = key.to_sym
|
|
75
|
+
if key == :name
|
|
76
|
+
color_name = value
|
|
77
|
+
else
|
|
78
|
+
normalized_color_spec[key] = value
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
Color.new(color_name, normalized_color_spec)
|
|
82
|
+
end
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
end
|
|
86
|
+
end
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
module Test
|
|
2
|
+
module Unit
|
|
3
|
+
class Color
|
|
4
|
+
NAMES = ["black", "red", "green", "yellow",
|
|
5
|
+
"blue", "magenta", "cyan", "white"]
|
|
6
|
+
|
|
7
|
+
attr_reader :name
|
|
8
|
+
def initialize(name, options={})
|
|
9
|
+
@name = name
|
|
10
|
+
@foreground = options[:foreground]
|
|
11
|
+
@foreground = true if @foreground.nil?
|
|
12
|
+
@intensity = options[:intensity]
|
|
13
|
+
@bold = options[:bold]
|
|
14
|
+
@italic = options[:italic]
|
|
15
|
+
@underline = options[:underline]
|
|
16
|
+
end
|
|
17
|
+
|
|
18
|
+
def foreground?
|
|
19
|
+
@foreground
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
def intensity?
|
|
23
|
+
@intensity
|
|
24
|
+
end
|
|
25
|
+
|
|
26
|
+
def bold?
|
|
27
|
+
@bold
|
|
28
|
+
end
|
|
29
|
+
|
|
30
|
+
def italic?
|
|
31
|
+
@italic
|
|
32
|
+
end
|
|
33
|
+
|
|
34
|
+
def underline?
|
|
35
|
+
@underline
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
def ==(other)
|
|
39
|
+
self.class === other and
|
|
40
|
+
[name, foreground?, intensity?,
|
|
41
|
+
bold?, italic?, underline?] ==
|
|
42
|
+
[other.name, other.foreground?, other.intensity?,
|
|
43
|
+
other.bold?, other.italic?, other.underline?]
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
def sequence
|
|
47
|
+
sequence = []
|
|
48
|
+
if @name == "none"
|
|
49
|
+
elsif @name == "reset"
|
|
50
|
+
sequence << "0"
|
|
51
|
+
else
|
|
52
|
+
foreground_parameter = foreground? ? 3 : 4
|
|
53
|
+
foreground_parameter += 6 if intensity?
|
|
54
|
+
sequence << "#{foreground_parameter}#{NAMES.index(@name)}"
|
|
55
|
+
end
|
|
56
|
+
sequence << "1" if bold?
|
|
57
|
+
sequence << "3" if italic?
|
|
58
|
+
sequence << "4" if underline?
|
|
59
|
+
sequence
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
def escape_sequence
|
|
63
|
+
"\e[#{sequence.join(';')}m"
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
def +(other)
|
|
67
|
+
MixColor.new([self, other])
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
class MixColor
|
|
72
|
+
attr_reader :colors
|
|
73
|
+
def initialize(colors)
|
|
74
|
+
@colors = colors
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
def sequence
|
|
78
|
+
@colors.inject([]) do |result, color|
|
|
79
|
+
result + color.sequence
|
|
80
|
+
end
|
|
81
|
+
end
|
|
82
|
+
|
|
83
|
+
def escape_sequence
|
|
84
|
+
"\e[#{sequence.join(';')}m"
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
def +(other)
|
|
88
|
+
self.class.new([self, other])
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
def ==(other)
|
|
92
|
+
self.class === other and colors == other.colors
|
|
93
|
+
end
|
|
94
|
+
end
|
|
95
|
+
end
|
|
96
|
+
end
|