-
Notifications
You must be signed in to change notification settings - Fork 160
/
Rakefile
216 lines (183 loc) · 7.15 KB
/
Rakefile
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
# frozen_string_literal: true
#-------------------------------------------------------------------------
# # Copyright (c) Microsoft and contributors. All rights reserved.
#
# The MIT License(MIT)
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files(the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and / or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions :
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#--------------------------------------------------------------------------
require "rake/testtask"
require "rubygems/package_task"
require "dotenv/tasks"
require "yard"
task :build_common do
Dir.chdir("./common") do
abort "[ABORTING] build gem failed" unless system "gem build azure-storage-common.gemspec"
end
end
task :build_blob do
Dir.chdir("./blob") do
abort "[ABORTING] build gem failed" unless system "gem build azure-storage-blob.gemspec"
end
end
task :build_table do
Dir.chdir("./table") do
abort "[ABORTING] build gem failed" unless system "gem build azure-storage-table.gemspec"
end
end
task :build_file do
Dir.chdir("./file") do
abort "[ABORTING] build gem failed" unless system "gem build azure-storage-file.gemspec"
end
end
task :build_queue do
Dir.chdir("./queue") do
abort "[ABORTING] build gem failed" unless system "gem build azure-storage-queue.gemspec"
end
end
YARD::Rake::YardocTask.new do |t|
t.files = ["blob/lib/**/*.rb", "table/lib/**/*.rb", "file/lib/**/*.rb", "queue/lib/**/*.rb"]
t.options = [""]
t.stats_options = ["--list-undoc"]
end
task :publishDoc do
desc "Generate documents and publish to GitHub Pages"
repo = %x(git config remote.origin.url).gsub(/^git:/, "https:")
deploy_branch = "gh-pages"
if repo.match(/github\.com\.git$/)
deploy_branch = "master"
end
system "git remote set-url --push origin #{repo}"
system "git remote set-branches --add origin #{deploy_branch}"
system "git fetch -q"
if ("#{ENV['GIT_NAME']}" != "")
system "git config user.name '#{ENV['GIT_NAME']}'"
end
if ("#{ENV['GIT_EMAIL']}" != "")
system "git config user.email '#{ENV['GIT_EMAIL']}'"
end
system 'git config credential.helper "store --file=.git/credentials"'
File.open(".git/credentials", "w") do |f|
f.write("https://#{ENV['GH_TOKEN']}:[email protected]")
end
system "rake yard"
system "git checkout gh-pages"
system "mv doc/* ./ -f"
system "rm doc -rf"
system "git add *"
system "git commit -m \"update document\""
system "git push"
system "git checkout master"
File.delete ".git/credentials"
end
namespace :test do
task require_environment: :dotenv do
unset_environment = [
ENV.fetch("AZURE_STORAGE_ACCOUNT", nil),
ENV.fetch("AZURE_STORAGE_ACCESS_KEY", nil),
ENV.fetch("AZURE_STORAGE_CONNECTION_STRING", nil)
].include?(nil)
abort "[ABORTING] Configure your environment to run the integration tests" if unset_environment
end
Rake::TestTask.new :unit do |t|
t.pattern = "test/unit/**/*_test.rb"
t.verbose = true
t.libs = %w(./blob/lib ./table/lib ./queue/lib ./file/lib ./common/lib test)
end
namespace :unit do
def component_task(component)
Rake::TestTask.new component do |t|
t.pattern = "test/unit/#{component}/**/*_test.rb"
t.verbose = true
t.libs = %w(./blob/lib ./table/lib ./queue/lib ./file/lib ./common/lib test)
end
end
component_task :storage
end
Rake::TestTask.new :integration do |t|
t.test_files = Dir["test/integration/**/*_test.rb"].reject do |path|
path.include?("database")
end
t.verbose = true
t.libs = %w(./blob/lib ./table/lib ./queue/lib ./file/lib ./common/lib test)
end
task integration: :require_environment
namespace :integration do
def component_task(component)
Rake::TestTask.new component do |t|
t.pattern = "test/integration/#{component}/**/*_test.rb"
t.verbose = true
t.libs = %w(./blob/lib ./table/lib ./queue/lib ./file/lib ./common/lib test)
end
task component => "test:require_environment"
end
component_task :storage
end
namespace :storage do
Rake::TestTask.new :unit do |t|
t.pattern = "test/unit/storage/**/*_test.rb"
t.verbose = true
t.libs = %w(./blob/lib ./table/lib ./queue/lib ./file/lib ./common/lib test)
end
task require_storage_env: :dotenv do
unset_environment = [
ENV.fetch("AZURE_STORAGE_ACCOUNT", nil),
ENV.fetch("AZURE_STORAGE_ACCESS_KEY", nil),
ENV.fetch("AZURE_STORAGE_CONNECTION_STRING", nil)
].include?(nil)
abort "[ABORTING] Configure your environment to run the storage integration tests" if unset_environment
end
Rake::TestTask.new :integration do |t|
t.pattern = "test/integration/storage/**/*_test.rb"
t.verbose = true
t.libs = %w(./blob/lib ./table/lib ./queue/lib ./file/lib ./common/lib test)
end
task integration: :require_storage_env
end
task cleanup: :require_environment do
$:.unshift "lib"
require "azure/storage"
Azure.configure do |config|
config.access_key = ENV.fetch("AZURE_STORAGE_ACCESS_KEY")
config.account_name = ENV.fetch("AZURE_STORAGE_ACCOUNT")
end
end
end
task test: %w(test:unit test:integration)
task :sanity_check do
abort "[ABORTING] build common gem failed" unless system "rake build_common"
abort "[ABORTING] build blob gem failed" unless system "rake build_blob"
abort "[ABORTING] build file gem failed" unless system "rake build_file"
abort "[ABORTING] build table gem failed" unless system "rake build_table"
abort "[ABORTING] build qeueue gem failed" unless system "rake build_queue"
Dir.chdir("./common") do
abort "[ABORTING] installing common gem failed" unless system "gem install azure-storage-common -l"
end
Dir.chdir("./blob") do
abort "[ABORTING] installing blob gem failed" unless system "gem install azure-storage-blob -l"
end
Dir.chdir("./table") do
abort "[ABORTING] installing table gem failed" unless system "gem install azure-storage-table -l"
end
Dir.chdir("./queue") do
abort "[ABORTING] installing queue gem failed" unless system "gem install azure-storage-queue -l"
end
Dir.chdir("./file") do
abort "[ABORTING] installing file gem failed" unless system "gem install azure-storage-file -l"
end
abort "[ABORTING] run sanity_check.rb failed" unless system "ruby ./test/sanity_check.rb"
end
task default: :test