forked from jeremyevans/sequel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
200 lines (166 loc) · 6.36 KB
/
Rakefile
File metadata and controls
200 lines (166 loc) · 6.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
require "rake"
require "rake/clean"
NAME = 'sequel'
VERS = lambda do
require File.expand_path("../lib/sequel/version", __FILE__)
Sequel.version
end
CLEAN.include ["sequel-*.gem", "rdoc", "coverage", "www/public/*.html", "www/public/rdoc*", "spec/bin-sequel-*"]
# Gem Packaging
desc "Build sequel gem"
task :package=>[:clean] do |p|
sh %{#{FileUtils::RUBY} -S gem build sequel.gemspec}
end
### Website
desc "Make local version of website"
task :website do
sh %{#{FileUtils::RUBY} www/make_www.rb}
end
### RDoc
def self.rdoc_task(rdoc_dir, main, files)
rdoc_opts = ["--line-numbers", "--inline-source", '--title', 'Sequel: The Database Toolkit for Ruby']
begin
gem 'hanna'
rdoc_opts.concat(['-f', 'hanna'])
rescue Gem::LoadError
end
rdoc_opts.concat(['--main', main, "-o", rdoc_dir])
FileUtils.rm_rf(rdoc_dir)
require "rdoc"
RDoc::RDoc.new.document(rdoc_opts + files)
end
desc "Generate rdoc"
task :rdoc do
rdoc_task("rdoc", 'README.rdoc',
%w"README.rdoc CHANGELOG doc/CHANGELOG.old MIT-LICENSE" +
Dir["lib/**/*.rb"] +
Dir["doc/*.rdoc"] +
Dir['doc/release_notes/*.txt']
)
end
desc "Generate all rdoc for Sequel website"
task :website_rdoc=>[:website_rdoc_main, :website_rdoc_adapters, :website_rdoc_plugins]
desc "Generate rdoc for core/model for Sequel website"
task :website_rdoc_main do
rdoc_task("www/public/rdoc", 'README.rdoc',
%w"README.rdoc CHANGELOG doc/CHANGELOG.old MIT-LICENSE" +
Dir["lib/*.rb"] +
Dir["lib/sequel/*.rb"] +
Dir["lib/sequel/{connection_pool,dataset,database,model}/*.rb"] +
["lib/sequel/extensions/migration.rb"] +
Dir["doc/*.rdoc"] +
Dir["doc/release_notes/*.txt"]
)
end
desc "Generate rdoc for adapters for Sequel website"
task :website_rdoc_adapters do
rdoc_task("www/public/rdoc-adapters", 'Sequel',
Dir["lib/sequel/adapters/**/*.rb"]
)
end
desc "Generate rdoc for plugins/extensions for Sequel website"
task :website_rdoc_plugins do
rdoc_task("www/public/rdoc-plugins", 'Sequel',
Dir["lib/sequel/{extensions,plugins}/**/*.rb"] +
Dir["doc/core_*"]
)
end
### Specs
run_spec = proc do |file|
lib_dir = File.join(File.dirname(File.expand_path(__FILE__)), 'lib')
rubylib = ENV['RUBYLIB']
ENV['RUBYLIB'] ? (ENV['RUBYLIB'] += ":#{lib_dir}") : (ENV['RUBYLIB'] = lib_dir)
sh "#{FileUtils::RUBY} #{"-w" if RUBY_VERSION >= '3'} #{'-W:strict_unused_block' if RUBY_VERSION >= '3.4'} #{file}"
ENV['RUBYLIB'] = rubylib
end
spec_task = proc do |description, name, file, coverage, visibility|
desc description
task name do
run_spec.call(file)
end
if coverage
desc "#{description} with coverage"
task :"#{name}_cov" do
ENV['COVERAGE'] = coverage == true ? '1' : coverage
run_spec.call(file)
ENV.delete('COVERAGE')
end
end
if visibility
desc "Run specs with method visibility checking"
task :"#{name}_vis" do
ENV['CHECK_METHOD_VISIBILITY'] = '1'
run_spec.call(file)
ENV.delete('CHECK_METHOD_VISIBILITY')
end
end
end
desc "Run the core, model, and extension/plugin specs"
task :default => :spec
desc "Run the core, model, and extension/plugin specs"
task :spec => [:spec_core, :spec_model, :spec_plugin]
spec_task.call("Run core and model specs together", :spec_core_model, 'spec/core_model_spec.rb', "core-model", false)
spec_task.call("Run core specs", :spec_core, 'spec/core_spec.rb', false, false)
spec_task.call("Run model specs", :spec_model, 'spec/model_spec.rb', false, false)
spec_task.call("Run plugin/extension specs", :spec_plugin, 'spec/plugin_spec.rb', "plugin-extension", true)
spec_task.call("Run bin/sequel specs", :spec_bin, 'spec/bin_spec.rb', 'bin', false)
spec_task.call("Run core extensions specs", :spec_core_ext, 'spec/core_extensions_spec.rb', 'core-ext', true)
spec_task.call("Run integration tests", :spec_integration, 'spec/adapter_spec.rb none', '1', true)
%w'postgres sqlite mysql oracle mssql db2 sqlanywhere'.each do |adapter|
spec_task.call("Run #{adapter} tests", :"spec_#{adapter}", "spec/adapter_spec.rb #{adapter}", adapter, true)
end
spec_task.call("Run model specs without the associations code", :_spec_model_no_assoc, 'spec/model_no_assoc_spec.rb', false, false)
desc "Run model specs without the associations code"
task :spec_model_no_assoc do
ENV['SEQUEL_NO_ASSOCIATIONS'] = '1'
Rake::Task['_spec_model_no_assoc'].invoke
end
desc "Run core/model/extension/plugin specs with coverage"
task :spec_cov do
Rake::Cleaner.cleanup_files(::Rake::FileList["coverage"])
ENV['SEQUEL_MERGE_COVERAGE'] = '1'
Rake::Task['spec_bin_cov'].invoke
Rake::Task['spec_core_model_cov'].invoke
Rake::Task['spec_plugin_cov'].invoke
Rake::Task['spec_core_ext_cov'].invoke
ENV['NO_SEQUEL_PG'] = '1'
Rake::Task['spec_postgres_cov'].invoke
end
task :spec_ci=>[:spec_core, :spec_model, :spec_plugin, :spec_core_ext] do
next if RUBY_VERSION < '2.4'
if RUBY_VERSION.split('.')[1].to_i.send(Time.now.yday.even? ? :even? : :odd?)
# MariaDB
mysql_port = ":3307"
else
# MySQL
mysql_jdbc = "&allowPublicKeyRetrieval=true"
end
if RUBY_ENGINE == 'jruby'
ENV['SEQUEL_SQLITE_URL'] = "jdbc:sqlite::memory:"
ENV['SEQUEL_POSTGRES_URL'] = "jdbc:postgresql://localhost/?user=postgres&password=postgres"
ENV['SEQUEL_MYSQL_URL'] = "jdbc:mysql://127.0.0.1#{mysql_port}/sequel_test?user=root&password=root&useSSL=false#{mysql_jdbc}"
else
ENV['SEQUEL_SQLITE_URL'] = "sqlite:/"
ENV['SEQUEL_POSTGRES_URL'] = "postgres://localhost?user=postgres&password=postgres"
ENV['SEQUEL_MYSQL_URL'] = "mysql2://127.0.0.1#{mysql_port}/sequel_test?user=root&password=root&useSSL=false"
end
Rake::Task['spec_postgres'].invoke
Rake::Task['spec_sqlite'].invoke
Rake::Task['spec_mysql'].invoke
end
desc "Print Sequel version"
task :version do
puts VERS.call
end
desc "Check syntax of all .rb files"
task :check_syntax do
Dir['**/*.rb'].each{|file| print `#{FileUtils::RUBY} -c #{file} | fgrep -v "Syntax OK"`}
end
desc "Check documentation for plugin/extension files"
task :check_plugin_doc do
text = File.binread('www/pages/plugins.html.erb')
skip = %w'before_after_save freeze_datasets from_block no_auto_literal_strings auto_validations_constraint_validations_presence_message optimistic_locking_base'
Dir['lib/sequel/{plugins,extensions}/*.rb'].map{|f| File.basename(f).sub('.rb', '') if File.size(f)}.sort.each do |f|
puts f if !f.start_with?('_') && !skip.include?(f) && !text.include?(f)
end
end