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 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318
|
require File.dirname(__FILE__) + '/../spec_helper'
describe AssetSync do
include_context "mock Rails without_yml"
describe 'with initializer' do
before(:each) do
AssetSync.config = AssetSync::Config.new
AssetSync.configure do |config|
config.fog_provider = 'AWS'
config.aws_access_key_id = 'aaaa'
config.aws_secret_access_key = 'bbbb'
config.fog_directory = 'mybucket'
config.fog_region = 'eu-west-1'
config.fog_path_style = 'true'
config.existing_remote_files = "keep"
end
end
it "should default to running on precompile" do
expect(AssetSync.config.run_on_precompile).to be_truthy
end
it "should default AssetSync to enabled" do
expect(AssetSync.config.enabled?).to be_truthy
expect(AssetSync.enabled?).to be_truthy
end
it "should configure provider as AWS" do
expect(AssetSync.config.fog_provider).to eq('AWS')
expect(AssetSync.config).to be_aws
end
it "should should keep existing remote files" do
expect(AssetSync.config.existing_remote_files?).to eq(true)
end
it "should configure aws_access_key" do
expect(AssetSync.config.aws_access_key_id).to eq("aaaa")
end
it "should configure aws_secret_access_key" do
expect(AssetSync.config.aws_secret_access_key).to eq("bbbb")
end
it "should configure aws_access_key" do
expect(AssetSync.config.fog_directory).to eq("mybucket")
end
it "should configure fog_region" do
expect(AssetSync.config.fog_region).to eq("eu-west-1")
end
it "should configure path_style" do
expect(AssetSync.config.fog_path_style).to be_truthy
end
it "should configure existing_remote_files" do
expect(AssetSync.config.existing_remote_files).to eq("keep")
end
it "should default gzip_compression to false" do
expect(AssetSync.config.gzip_compression).to be_falsey
end
it "should default manifest to false" do
expect(AssetSync.config.manifest).to be_falsey
end
it "should default log_silently to true" do
expect(AssetSync.config.log_silently).to be_truthy
end
it "log_silently? should reflect the configuration" do
AssetSync.config.log_silently = false
expect(AssetSync.config.log_silently?).to eq(false)
end
it "log_silently? should always be true if ENV['RAILS_GROUPS'] == 'assets'" do
AssetSync.config.log_silently = false
allow(ENV).to receive(:[]).with('RAILS_GROUPS').and_return('assets')
expect(AssetSync.config.log_silently?).to eq(false)
end
it "should default cdn_distribution_id to nil" do
expect(AssetSync.config.cdn_distribution_id).to be_nil
end
it "should default invalidate to empty array" do
expect(AssetSync.config.invalidate).to eq([])
end
it "should default asset_regexps to empty array" do
expect(AssetSync.config.cache_asset_regexps).to eq([])
end
end
describe 'from yml' do
before(:each) do
set_rails_root('aws_with_yml')
AssetSync.config = AssetSync::Config.new
end
it "should default AssetSync to enabled" do
expect(AssetSync.config.enabled?).to be_truthy
expect(AssetSync.enabled?).to be_truthy
end
it "should configure run_on_precompile" do
expect(AssetSync.config.run_on_precompile).to be_falsey
end
it "should configure aws_access_key_id" do
expect(AssetSync.config.aws_access_key_id).to eq("xxxx")
end
it "should configure aws_secret_access_key" do
expect(AssetSync.config.aws_secret_access_key).to eq("zzzz")
end
it "should configure fog_directory" do
expect(AssetSync.config.fog_directory).to eq("rails_app_test")
end
it "should configure fog_region" do
expect(AssetSync.config.fog_region).to eq("eu-west-1")
end
it "should configure path_style" do
expect(AssetSync.config.fog_path_style).to be_truthy
end
it "should configure existing_remote_files" do
expect(AssetSync.config.existing_remote_files).to eq("keep")
end
it "should default gzip_compression to false" do
expect(AssetSync.config.gzip_compression).to be_falsey
end
it "should default manifest to false" do
expect(AssetSync.config.manifest).to be_falsey
end
it "should default asset_regexps to match regexps" do
expect(AssetSync.config.cache_asset_regexps).to eq(['cache_me.js', /cache_some\.\d{8}\.css/])
end
end
describe 'from yml, exporting to a mobile hybrid development directory' do
before(:each) do
Rails.env.replace('hybrid')
set_rails_root('aws_with_yml')
AssetSync.config = AssetSync::Config.new
end
it "should be disabled" do
expect{ AssetSync.sync }.not_to raise_error
end
after(:each) do
Rails.env.replace('test')
end
end
describe 'with no configuration' do
before(:each) do
AssetSync.config = AssetSync::Config.new
end
it "should be invalid" do
expect{ AssetSync.sync }.to raise_error(::AssetSync::Config::Invalid)
end
end
describe "with no other configuration than enabled = false" do
before(:each) do
AssetSync.config = AssetSync::Config.new
AssetSync.configure do |config|
config.enabled = false
end
end
it "should do nothing, without complaining" do
expect{ AssetSync.sync }.not_to raise_error
end
end
describe 'with fail_silent configuration' do
before(:each) do
allow(AssetSync).to receive(:stderr).and_return(@stderr = StringIO.new)
AssetSync.config = AssetSync::Config.new
AssetSync.configure do |config|
config.fail_silently = true
end
end
it "should not raise an invalid exception" do
expect{ AssetSync.sync }.not_to raise_error
end
it "should output a warning to stderr" do
AssetSync.sync
expect(@stderr.string).to match(/can't be blank/)
end
end
describe 'with disabled config' do
before(:each) do
allow(AssetSync).to receive(:stderr).and_return(@stderr = StringIO.new)
AssetSync.config = AssetSync::Config.new
AssetSync.configure do |config|
config.enabled = false
end
end
it "should not raise an invalid exception" do
expect{ AssetSync.sync }.not_to raise_error
end
end
describe 'with gzip_compression enabled' do
before(:each) do
AssetSync.config = AssetSync::Config.new
AssetSync.config.gzip_compression = true
end
it "config.gzip? should be true" do
expect(AssetSync.config.gzip?).to be_truthy
end
end
describe 'with manifest enabled' do
before(:each) do
AssetSync.config = AssetSync::Config.new
AssetSync.config.manifest = true
end
it "config.manifest should be true" do
expect(AssetSync.config.manifest).to be_truthy
end
it "config.manifest_path should default to public/assets.." do
expect(AssetSync.config.manifest_path).to match(/public\/assets\/manifest.yml/)
end
it "config.manifest_path should default to public/assets.." do
Rails.application.config.assets.manifest = "/var/assets"
expect(AssetSync.config.manifest_path).to eq("/var/assets/manifest.yml")
end
it "config.manifest_path should default to public/custom_assets.." do
Rails.application.config.assets.prefix = 'custom_assets'
expect(AssetSync.config.manifest_path).to match(/public\/custom_assets\/manifest.yml/)
end
end
describe 'with cache_asset_regexps' do
before(:each) do
AssetSync.config = AssetSync::Config.new
end
it "config.cache_asset_regexp should set cache_asset_regexps" do
AssetSync.config.cache_asset_regexp = /\.[a-f0-9]{8}/i
expect(AssetSync.config.cache_asset_regexps.size).to eq(1)
expect(AssetSync.config.cache_asset_regexps[0]).to eq(/\.[a-f0-9]{8}/i)
end
it "set cache_asset_regexps" do
AssetSync.config.cache_asset_regexps = ["app.abc123.js", /\.[a-f0-9]{10}/i]
expect(AssetSync.config.cache_asset_regexps.size).to eq(2)
expect(AssetSync.config.cache_asset_regexps).to eq(["app.abc123.js", /\.[a-f0-9]{10}/i])
end
end
describe 'with invalid yml' do
before(:each) do
set_rails_root('with_invalid_yml')
end
it "an error" do
expect{ AssetSync::Config.new }.to raise_error(Psych::SyntaxError)
end
end
describe 'FogPublicValue' do
describe "#to_bool" do
it "true should be converted to true" do
expect(AssetSync::Config::FogPublicValue.new(true).to_bool).to be_truthy
end
it "false should be converted to false" do
expect(AssetSync::Config::FogPublicValue.new(false).to_bool).to be_falsey
end
it "nil should be converted to false" do
expect(AssetSync::Config::FogPublicValue.new(nil).to_bool).to be_falsey
end
it "'default' should be converted to false" do
expect(AssetSync::Config::FogPublicValue.new("default").to_bool).to be_truthy
end
end
describe "#use_explicit_value?" do
it "true should be converted to true" do
expect(AssetSync::Config::FogPublicValue.new(true).use_explicit_value?).to be_truthy
end
it "false should be converted to true" do
expect(AssetSync::Config::FogPublicValue.new(false).use_explicit_value?).to be_truthy
end
it "nil should be converted to true" do
expect(AssetSync::Config::FogPublicValue.new(nil).use_explicit_value?).to be_truthy
end
it "'default' should be converted to false" do
expect(AssetSync::Config::FogPublicValue.new("default").use_explicit_value?).to be_falsey
end
end
end
end
|