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 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945
|
# frozen_string_literal: true
require 'sprockets_test'
require 'rack/mock'
require 'execjs'
module EnvironmentTests
def self.test(name, &block)
define_method("test_#{name.inspect}", &block)
end
test "working directory is the default root" do
assert_equal Dir.pwd, @env.root
end
test "default logger level is set to fatal" do
assert_equal Logger::FATAL, @env.logger.level
end
test "active css compressor" do
assert_nil @env.css_compressor
end
test "active js compressor" do
assert_nil @env.js_compressor
end
test "paths" do
assert_equal [fixture_path("default")], @env.paths.to_a
end
test "register global path" do
assert_equal [fixture_path("default")], new_environment.paths.to_a
Sprockets.append_path(fixture_path("asset"))
assert_equal [fixture_path("asset"), fixture_path("default")], new_environment.paths.to_a
Sprockets.clear_paths
end
test "eco templates" do
asset = @env["goodbye.js"]
context = ExecJS.compile(asset.to_s)
assert_equal "Goodbye world\n", context.call("JST['goodbye']", name: "world")
end
test "ejs templates" do
assert asset = @env["hello.js"]
context = ExecJS.compile(asset.to_s)
assert_equal "hello: world\n", context.call("JST['hello']", name: "world")
end
test "find_asset! does not raise an exception when asset is found" do
@env.find_asset!("hello.js") # assert no raise
end
test "find_asset! raises an error when asset is not found" do
does_not_exist_file_name = "doesnotexist.blerg"
error = assert_raises(Sprockets::NotFound) do
@env.find_asset!(does_not_exist_file_name)
end
assert_match %r{#{does_not_exist_file_name}}, error.message
end
test "asset_data_uri helper" do
assert asset = @env["with_data_uri.css"]
assert_equal "body {\n background-image: url(data:image/gif;base64,R0lGODlhAQABAIAAAP%2F%2F%2FwAAACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw%3D%3D) no-repeat;\n}\n", asset.to_s
end
test "lookup bundle processors" do
assert_equal 1, @env.bundle_processors['application/javascript'].size
assert_equal 1, @env.bundle_processors['text/css'].size
end
test "find asset with accept type" do
assert asset = @env.find_asset("gallery.js", accept: '*/*')
assert_equal fixture_path('default/gallery.js'), asset.filename
assert asset = @env.find_asset("gallery", accept: 'application/javascript')
assert_equal fixture_path('default/gallery.js'), asset.filename
assert asset = @env.find_asset("gallery", accept: 'application/javascript, text/css')
assert_equal fixture_path('default/gallery.js'), asset.filename
assert asset = @env.find_asset("gallery.js", accept: 'application/javascript')
assert_equal fixture_path('default/gallery.js'), asset.filename
assert asset = @env.find_asset("gallery", accept: 'text/css, application/javascript')
assert_equal fixture_path('default/gallery.js'), asset.filename
assert asset = @env.find_asset("coffee/foo", accept: "application/javascript")
assert_equal fixture_path('default/coffee/foo.coffee'), asset.filename
assert asset = @env.find_asset("coffee/foo.js", accept: "application/javascript")
assert_equal fixture_path('default/coffee/foo.coffee'), asset.filename
assert asset = @env.find_asset("jquery.tmpl.min", accept: 'application/javascript')
assert_equal fixture_path('default/jquery.tmpl.min.js'), asset.filename
assert asset = @env.find_asset("jquery.tmpl.min.js", accept: 'application/javascript')
assert_equal fixture_path('default/jquery.tmpl.min.js'), asset.filename
assert asset = @env.find_asset('manifest.js.yml', accept: 'text/yaml')
assert_equal fixture_path('default/manifest.js.yml'), asset.filename
assert asset = @env.find_asset('manifest.js.yml', accept: 'text/css, */*')
assert_equal fixture_path('default/manifest.js.yml'), asset.filename
refute @env.find_asset("gallery.js", accept: "text/css")
refute @env.find_asset(fixture_path('default/gallery.js'), accept: "text/css")
refute @env.find_asset('manifest.js.yml', accept: 'application/javascript')
end
test "find all linked assets" do
assert assets = @env.find_all_linked_assets("missing.js").to_a
assert_equal 0, assets.length
assert assets = @env.find_all_linked_assets("gallery.js").to_a
assert_equal 1, assets.length
assert_equal @env["gallery.js"], assets[0]
assert assets = @env.find_all_linked_assets("gallery-link.js").to_a
assert_equal 2, assets.length
assert_equal @env["gallery-link.js"], assets[0]
assert_equal @env["gallery.js"], assets[1]
assert assets = @env.find_all_linked_assets("explore-link.js").to_a
assert_equal 3, assets.length
assert_equal @env["explore-link.js"], assets[0]
assert_equal @env["gallery-link.js"], assets[1]
assert_equal @env["gallery.js"], assets[2]
end
test "html subresource links" do
assert asset = @env["homepage-links.html"]
assert_equal "text/html", asset.content_type
assert asset.to_s.match(/gallery-[a-z0-9]+\.css/)
assert asset.to_s.match(/gallery-[a-z0-9]+\.js/)
assert asset.links.include?(@env["gallery.css"].uri)
assert asset.links.include?(@env["gallery.js"].uri)
end
test "web component assets" do
assert asset = @env["menu/menu.html"]
assert_equal "text/html", asset.content_type
assert_equal "<menu></menu>\n", asset.to_s
assert asset = @env["menu/menu.js"]
assert_equal "application/javascript", asset.content_type
assert_equal "$.fn.menu = {};\n", asset.to_s
assert asset = @env["menu/menu.css"]
assert_equal "text/css", asset.content_type
assert_equal ".menu {}\n", asset.to_s
end
test "explicit bower.json access returns json file" do
assert_equal fixture_path('default/bower/bower.json'),
@env["bower/bower.json"].filename
end
test "find default bower main" do
assert_equal fixture_path('default/bower/main.js'),
@env["bower"].filename
assert_equal fixture_path('default/qunit/qunit.js'),
@env["qunit"].filename
assert_equal fixture_path('default/rails/rails.coffee'),
@env["rails"].filename
end
test "find bower main by format extension" do
assert_equal fixture_path('default/bower/main.js'),
@env["bower.js"].filename
refute @env.find_asset("bower.css")
assert_equal fixture_path('default/qunit/qunit.js'),
@env["qunit.js"].filename
assert_equal fixture_path('default/qunit/qunit.css'),
@env["qunit.css"].filename
assert_equal fixture_path('default/rails/rails.coffee'),
@env["rails.js"].filename
assert_equal fixture_path('default/requirejs/require.js'),
@env.find_asset("requirejs.js").filename
end
test "find bower main by content type" do
assert_equal fixture_path('default/bower/main.js'),
@env.find_asset("bower", accept: 'application/javascript').filename
assert_equal fixture_path('default/bower/main.js'),
@env.find_asset("bower.js", accept: 'application/javascript').filename
assert_equal fixture_path('default/qunit/qunit.js'),
@env.find_asset("qunit", accept: 'application/javascript').filename
assert_equal fixture_path('default/qunit/qunit.js'),
@env.find_asset("qunit.js", accept: 'application/javascript').filename
assert_equal fixture_path('default/qunit/qunit.css'),
@env.find_asset("qunit", accept: 'text/css').filename
assert_equal fixture_path('default/qunit/qunit.css'),
@env.find_asset("qunit.css", accept: 'text/css').filename
assert_equal fixture_path('default/rails/rails.coffee'),
@env.find_asset("rails", accept: 'application/javascript').filename
assert_equal fixture_path('default/rails/rails.coffee'),
@env.find_asset("rails.js", accept: 'application/javascript').filename
assert_equal fixture_path('default/requirejs/require.js'),
@env.find_asset("requirejs.js", accept: 'application/javascript').filename
end
test "bower main with invalid files" do
assert @env.find_asset("zeroclipboard/FILEFILE")
assert @env.find_asset("zeroclipboard/mimetype.unknown")
assert @env.find_asset("zeroclipboard/zc.js")
assert @env.find_asset("zeroclipboard.js")
refute @env.find_asset("zeroclipboard.unknown")
end
test "explicit package.json access returns json file" do
assert_equal fixture_path('default/npm/package.json'),
@env["npm/package.json"].filename
end
test "find default npm main" do
assert_equal fixture_path('default/npm/main.js'),
@env["npm"].filename
end
test "find nested npm main" do
assert_equal fixture_path('default/npm-nested/a/b/main.js'),
@env["npm-nested/a/b"].filename
end
test "find npm main by format extension" do
assert_equal fixture_path('default/npm/main.js'),
@env["npm.js"].filename
end
test "find npm main by content type" do
assert_equal fixture_path('default/npm/main.js'),
@env.find_asset("npm", accept: 'application/javascript').filename
assert_equal fixture_path('default/npm/main.js'),
@env.find_asset("npm.js", accept: 'application/javascript').filename
end
test "find default npm main when main key is not set" do
assert_equal fixture_path('default/express/index.js'),
@env["express"].filename
end
test "find npm style by format extension" do
assert_equal fixture_path('default/npm/style.css'),
@env["npm.css"].filename
end
test "find npm style by content type" do
assert_equal fixture_path('default/npm/style.css'),
@env.find_asset("npm", accept: 'text/css').filename
assert_equal fixture_path('default/npm/style.css'),
@env.find_asset("npm.css", accept: 'text/css').filename
end
test "find bundled asset in environment" do
assert_equal "var Gallery = {};\n", @env["gallery.js"].to_s
end
test "find bundled asset with absolute path environment" do
assert_equal "var Gallery = {};\n", @env[fixture_path("default/gallery.js")].to_s
end
test "find bundled asset with implicit format" do
assert_equal "(function() {\n var foo;\n\n foo = 'hello';\n\n}).call(this);\n",
@env["coffee/foo.js"].to_s
end
test "find static asset in environment" do
assert_equal "Hello world\n", @env["hello.txt"].to_s
end
test "find static asset with leading slash in environment" do
assert_equal "Hello world\n", @env[fixture_path("default/hello.txt")].to_s
end
test "find index.js in directory" do
assert_equal "var A;\nvar B;\n", @env["mobile.js"].to_s
end
test "find index.css in directory" do
assert_equal ".c {}\n.d {}\n/*\n\n */\n", @env["mobile.css"].to_s
end
test "ignore index.min.js in directory" do
refute @env["mobile-min.js"]
end
test "find bower.json in directory" do
assert_equal "var bower;\n", @env["bower.js"].to_s
end
test "find multiple bower.json in directory" do
assert_equal "var qunit;\n", @env["qunit.js"].to_s
assert_equal ".qunit {}\n", @env["qunit.css"].to_s
end
test "find erb assets" do
assert asset = @env.find_asset("erb/a.html")
assert_equal "text/html", asset.content_type
assert asset = @env.find_asset("erb/b.txt")
assert_equal "text/plain", asset.content_type
assert asset = @env.find_asset("erb/c.js")
assert_equal "application/javascript", asset.content_type
assert asset = @env.find_asset("erb/d.css")
assert_equal "text/css", asset.content_type
assert asset = @env.find_asset("erb/e.html")
assert_equal "text/html", asset.content_type
assert asset = @env.find_asset("erb/f.yaml")
assert_equal "text/yaml", asset.content_type
end
test "es6 asset" do
assert asset = @env.find_asset("future.js")
assert_match(/var square/, asset.to_s)
assert_match(/function/, asset.to_s)
end
test "find html builder asset" do
assert asset = @env.find_asset("nokogiri-html.html")
assert_equal "text/html", asset.content_type
if RUBY_PLATFORM.include?('java')
assert_equal '<html><body><span class="bold">Hello world</span></body></html>', asset.to_s
else
assert_equal <<-HTML, asset.to_s
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html><body><span class="bold">Hello world</span></body></html>
HTML
end
end
test "find xml builder asset" do
assert asset = @env.find_asset("nokogiri-xml.xml")
assert_equal "application/xml", asset.content_type
assert_equal <<-XML, asset.to_s
<?xml version="1.0"?>
<root>
<products>
<widget>
<id>10</id>
<name>Awesome widget</name>
</widget>
</products>
</root>
XML
end
test "svg transformer for extension" do
assert asset = @env.find_asset("logo.svg")
assert_equal "image/svg+xml", asset.content_type
assert_equal "logo.svg", asset.logical_path
assert_equal [60, 115, 118, 103, 32, 119, 105, 100, 116, 104], asset.to_s[0, 10].bytes.to_a
assert asset = @env.find_asset("logo.png")
assert_equal "image/png", asset.content_type
assert_equal "logo.png", asset.logical_path
assert_equal [137, 80, 78, 71, 13, 10, 26, 10, 60, 115], asset.to_s[0, 10].bytes.to_a
end
test "svg transformer for accept" do
assert asset = @env.find_asset("logo", accept: "image/svg+xml")
assert_equal "image/svg+xml", asset.content_type
assert_equal "logo.svg", asset.logical_path
assert_equal [60, 115, 118, 103, 32, 119, 105, 100, 116, 104], asset.to_s[0, 10].bytes.to_a
assert asset = @env.find_asset("logo", accept: "image/png")
assert_equal "image/png", asset.content_type
assert_equal "logo.png", asset.logical_path
assert_equal [137, 80, 78, 71, 13, 10, 26, 10, 60, 115], asset.to_s[0, 10].bytes.to_a
end
test "full path svg transformer" do
assert @env.find_asset(fixture_path("default/logo.svg"))
refute @env.find_asset(fixture_path("default/logo.png"))
end
test "full path svg transformer for accept" do
assert asset = @env.find_asset(fixture_path("default/logo.svg"), accept: "image/svg+xml")
assert_equal "logo.svg", asset.logical_path
assert_equal "image/svg+xml", asset.content_type
assert_equal [60, 115, 118, 103, 32, 119, 105, 100, 116, 104], asset.to_s[0, 10].bytes.to_a
assert asset = @env.find_asset(fixture_path("default/logo.svg"), accept: "image/png")
assert_equal "image/png", asset.content_type
assert_equal "logo.png", asset.logical_path
assert_equal [137, 80, 78, 71, 13, 10, 26, 10, 60, 115], asset.to_s[0, 10].bytes.to_a
end
test "asset with + character" do
assert asset = @env.find_asset("+plus.js")
assert_equal "+plus.js", asset.logical_path
assert_equal "application/javascript", asset.content_type
end
test "missing static path returns nil" do
assert_nil @env[fixture_path("default/missing.png")]
end
test "find static directory returns nil" do
assert_nil @env["images"]
end
test "missing asset returns nil" do
assert_nil @env["missing.js"]
end
test "missing asset path returns nil" do
refute @env[fixture_path("default/missing.js")]
end
test "asset filename outside of load paths" do
path = File.expand_path("../../bin/sprockets", __FILE__)
assert File.exist?(path), "#{path} didn't exist"
refute @env[path]
end
test "non-existent asset filename outside of load paths" do
path = File.expand_path("../../bin/sprockets2", __FILE__)
refute File.exist?(path), "#{path} exists"
refute @env[path]
end
test "can't require files outside the load path" do
path = fixture_path("default/../asset/project.css")
assert File.exist?(path)
refute @env[path]
end
test "asset with missing requires raises an exception" do
assert_raises Sprockets::FileNotFound do
@env["missing_require.js"]
end
end
test "asset with missing depend_on raises an exception" do
assert_raises Sprockets::FileNotFound do
@env["missing_depend_on.js"]
end
end
test "asset with missing absolute depend_on raises an exception" do
assert_raises Sprockets::FileOutsidePaths do
@env["missing_absolute_depend_on.js"]
end
end
test "asset logical path for absolute path" do
assert_equal "gallery.js",
@env.find_asset(fixture_path("default/gallery.js")).logical_path
assert_equal "application.js",
@env.find_asset(fixture_path("default/application.coffee"), accept: "application/javascript").logical_path
assert_equal "mobile/a.js",
@env.find_asset(fixture_path("default/mobile/a.js")).logical_path
end
test "mobile index logical path shorthand" do
assert_equal "mobile/index.js",
@env[fixture_path("default/mobile/index.js")].logical_path
assert_equal "mobile-min/index.min.js",
@env[fixture_path("default/mobile-min/index.min.js")].logical_path
end
test "CoffeeScript files are compiled in a closure" do
script = @env["coffee"].to_s
assert_equal "undefined", ExecJS.exec(script)
end
test "source pipeline skips all processoring" do
assert asset = @env.find_asset("missing_require.js", pipeline: :source)
assert_equal "// =require \"notfound\"\n", asset.source
assert_equal "application/javascript", asset.content_type
assert_equal "missing_require.source.js", asset.logical_path
assert asset = @env.find_asset("missing_require.source.js")
assert_equal "// =require \"notfound\"\n", asset.source
assert_equal "application/javascript", asset.content_type
assert_equal "missing_require.source.js", asset.logical_path
end
test "source pipeline on existing source asset" do
assert asset = @env.find_asset("hello.txt", pipeline: :source)
assert_equal "Hello world\n", asset.source
assert_equal "text/plain", asset.content_type
assert_equal "hello.source.txt", asset.logical_path
assert asset = @env.find_asset("hello.source.txt")
assert_equal "Hello world\n", asset.source
assert_equal "text/plain", asset.content_type
assert_equal "hello.source.txt", asset.logical_path
end
test "find source for concatenated asset" do
assert asset = @env.find_asset("application.source.coffee")
assert_equal "text/coffeescript", asset.content_type
assert_equal "application.source.coffee", asset.logical_path
assert asset = @env.find_asset("application.js")
assert_equal "application/javascript", asset.content_type
assert_equal "application.js", asset.logical_path
assert asset = @env.find_asset("application.self.js")
assert_equal "application/javascript", asset.content_type
assert_equal "application.self.js", asset.logical_path
assert asset = @env.find_asset("project.self.js")
assert_equal "application/javascript", asset.content_type
assert_equal "project.self.js", asset.logical_path
assert asset = @env.find_asset("application.js.map")
assert_equal "application/js-sourcemap+json", asset.content_type
assert_equal "application.js.map", asset.logical_path
end
end
class WhitespaceProcessor
def self.call(input)
input[:data].gsub(/\s+/, "")
end
end
class WhitespaceCompressor
def self.compress(source)
source.gsub(/\s+/, "")
end
end
class TestEnvironment < Sprockets::TestCase
include EnvironmentTests
def new_environment
Sprockets::Environment.new(".") do |env|
env.append_path(fixture_path('default'))
env.cache = {}
yield env if block_given?
end
end
def setup
@env = new_environment
end
test "changing logger" do
@env.logger = Logger.new($stderr)
end
test "changing paths" do
@env.clear_paths
@env.append_path(fixture_path('asset'))
end
test "default gzip" do
assert_equal true, @env.gzip?
end
test "change jst template namespace" do
@env.register_transformer 'application/javascript+function', 'application/javascript', Sprockets::JstProcessor.new(namespace: 'this.JST2')
assert asset = @env["hello.js"]
context = ExecJS.compile(asset.to_s)
assert_equal "hello: world\n", context.call("JST2['hello']", name: "world")
end
test "register bundle processor" do
old_size = @env.bundle_processors['text/css'].size
@env.register_bundle_processor 'text/css', WhitespaceProcessor
assert_equal old_size+1, @env.bundle_processors['text/css'].size
end
test "register compressor" do
assert !@env.compressors['text/css'][:whitespace]
@env.register_compressor 'text/css', :whitespace, WhitespaceCompressor
assert @env.compressors['text/css'][:whitespace]
end
test "register global bundle processor" do
old_size = Sprockets.bundle_processors['text/css'].size
Sprockets.register_bundle_processor 'text/css', WhitespaceProcessor
assert_equal old_size+1, Sprockets.bundle_processors['text/css'].size
env = new_environment
assert_equal old_size+1, env.bundle_processors['text/css'].size
Sprockets.unregister_bundle_processor 'text/css', WhitespaceProcessor
assert_equal old_size, Sprockets.bundle_processors['text/css'].size
end
test "setting css compressor to nil clears current compressor" do
@env.css_compressor = WhitespaceCompressor
assert @env.css_compressor
@env.css_compressor = nil
assert_nil @env.css_compressor
end
test "setting js compressor to nil clears current compressor" do
@env.js_compressor = WhitespaceCompressor
assert @env.js_compressor
@env.js_compressor = nil
assert_nil @env.js_compressor
end
test "setting js compressor to template handler" do
assert_nil @env.js_compressor
@env.js_compressor = Sprockets::UglifierCompressor
assert_equal Sprockets::UglifierCompressor, @env.js_compressor
@env.js_compressor = nil
assert_nil @env.js_compressor
end
test "setting css compressor to template handler" do
silence_warnings do
require 'sprockets/sass_compressor'
end
assert_nil @env.css_compressor
@env.css_compressor = Sprockets::SassCompressor
assert_equal Sprockets::SassCompressor, @env.css_compressor
@env.css_compressor = nil
assert_nil @env.css_compressor
end
test "setting js compressor to sym" do
assert_nil @env.js_compressor
@env.js_compressor = :uglifier
assert_equal 'Sprockets::UglifierCompressor', @env.js_compressor.name
@env.js_compressor = nil
assert_nil @env.js_compressor
end
test "setting css compressor to sym" do
silence_warnings do
require 'sprockets/sass_compressor'
end
assert_nil @env.css_compressor
@env.css_compressor = :sass
assert_equal 'Sprockets::SassCompressor', @env.css_compressor.name
@env.css_compressor = nil
assert_nil @env.css_compressor
end
test "pre/post processors on transformed asset" do
@env.register_preprocessor 'image/svg+xml', proc { |input|
{ data: input[:data], test: Array(input[:metadata][:test]) + [:pre_svg] }
}
@env.register_postprocessor 'image/svg+xml', proc { |input|
{ data: input[:data], test: Array(input[:metadata][:test]) + [:post_svg] }
}
@env.register_preprocessor 'image/png', proc { |input|
{ data: input[:data], test: Array(input[:metadata][:test]) + [:pre_png] }
}
@env.register_postprocessor 'image/png', proc { |input|
{ data: input[:data], test: Array(input[:metadata][:test]) + [:post_png] }
}
@env.register_preprocessor 'image/gif', proc { |input|
{ data: input[:data], test: Array(input[:metadata][:test]) + [:pre_gif] }
}
@env.register_postprocessor 'image/gif', proc { |input|
{ data: input[:data], test: Array(input[:metadata][:test]) + [:post_gif] }
}
assert asset = @env.find_asset("logo.svg")
assert_equal "image/svg+xml", asset.content_type
assert_equal [:pre_svg, :post_svg], asset.metadata[:test]
assert asset = @env.find_asset("logo.png")
assert_equal "image/png", asset.content_type
assert_equal [:pre_svg, :post_svg, :pre_png, :post_png], asset.metadata[:test]
assert asset = @env.find_asset("logo.gif")
assert_equal "image/gif", asset.content_type
assert_equal [:pre_svg, :post_svg, :pre_png, :post_png, :pre_gif, :post_gif], asset.metadata[:test]
end
test "processor returning a non-string data" do
@env.register_postprocessor 'application/javascript', proc { |input|
{ data: 42 }
}
assert_raises TypeError do
@env.find_asset("application.js")
end
end
test "processor returning a subclassed string data" do
my_string = Class.new(String)
@env.register_postprocessor 'application/javascript', proc { |input|
{ data: my_string.new("foo") }
}
assert_raises TypeError do
@env.find_asset("application.js")
end
end
test "processor returning a complex metadata type" do
@env.register_postprocessor 'application/javascript', proc { |input|
{ data: "hello", foo: Object.new }
}
assert_raises TypeError do
@env.find_asset("application.js")
end
end
test "access selector count metadata" do
assert asset = @env.find_asset("mobile.css")
assert_equal 2, asset.metadata[:selector_count]
end
test "changing version changes the digest_path of the asset" do
old_asset_digest = @env["gallery.js"].digest_path
@env.version = 'v2'
refute_equal old_asset_digest, @env["gallery.js"].digest_path
end
test "changing version changes the digest_path of the asset when there is no preposessor" do
old_asset_digest = @env["blank.gif"].digest_path
@env.version = 'v2'
refute_equal old_asset_digest, @env["blank.gif"].digest_path
end
test "changing version changes the etag of the asset" do
old_asset_etag = @env["gallery.js"].etag
@env.version = 'v2'
new_asset_etag = @env["gallery.js"].etag
refute_equal old_asset_etag, new_asset_etag
assert_equal old_asset_etag.size, new_asset_etag.size
end
test "changing version to nil does not break etag" do
old_asset_etag = @env["gallery.js"].etag
@env.version = nil
new_asset_etag = @env["gallery.js"].etag
assert_equal old_asset_etag, new_asset_etag
assert_equal old_asset_etag.size, new_asset_etag.size
end
test "changing version does not changes the digest of the asset" do
old_asset_digest = @env["gallery.js"].digest
@env.version = 'v2'
assert_equal old_asset_digest, @env["gallery.js"].digest
end
test "changing version does not changes the hexdigest of the asset" do
old_asset_hexdigest = @env["gallery.js"].hexdigest
@env.version = 'v2'
assert_equal old_asset_hexdigest, @env["gallery.js"].hexdigest
end
test "changing version does not changes the base64digest of the asset" do
old_asset_base64digest = @env["gallery.js"].base64digest
@env.version = 'v2'
assert_equal old_asset_base64digest, @env["gallery.js"].base64digest
end
test "changing version does not changes the integrity of the asset" do
old_asset_integrity = @env["gallery.js"].integrity
@env.version = 'v2'
assert_equal old_asset_integrity, @env["gallery.js"].integrity
end
test "bundled asset is stale if its mtime is updated or deleted" do
filename = File.join(fixture_path("default"), "tmp.js")
sandbox filename do
assert_nil @env["tmp.js"]
File.open(filename, 'w') { |f| f.write "foo;\n" }
assert_equal "foo;\n", @env["tmp.js"].to_s
File.open(filename, 'w') { |f| f.write "bar;\n" }
time = Time.now + 60
File.utime(time, time, filename)
assert_equal "bar;\n", @env["tmp.js"].to_s
File.unlink(filename)
assert_nil @env["tmp.js"]
end
end
test "static asset is stale if its mtime is updated or deleted" do
filename = File.join(fixture_path("default"), "tmp.png")
sandbox filename do
assert_nil @env["tmp.png"]
File.open(filename, 'wb') { |f| f.write "\x01\x02\x03" }
assert_equal "\x01\x02\x03", @env["tmp.png"].to_s
File.open(filename, 'wb') { |f| f.write "\x04\x05\x06" }
time = Time.now + 60
File.utime(time, time, filename)
assert_equal "\x04\x05\x06", @env["tmp.png"].to_s
File.unlink(filename)
assert_nil @env["tmp.png"]
end
end
test "bundled asset cached if theres an error building it" do
@env.cache = nil
filename = File.join(fixture_path("default"), "tmp.coffee")
sandbox filename do
File.open(filename, 'w') { |f| f.write "-->" }
begin
@env["tmp.js"].to_s
rescue ExecJS::Error => e
assert e
else
flunk "nothing raised"
end
File.open(filename, 'w') { |f| f.write "->" }
time = Time.now + 60
File.utime(time, time, filename)
assert_equal "(function() {\n (function() {});\n\n}).call(this);\n", @env["tmp.js"].to_s
end
end
test "separate contexts classes for each instance" do
e1 = new_environment
e2 = new_environment
assert_raises(NameError) { e1.context_class.instance_method(:foo) }
assert_raises(NameError) { e2.context_class.instance_method(:foo) }
e1.context_class.class_eval do
def foo; end
end
e1.context_class.instance_method(:foo)
assert_raises(NameError) { e2.context_class.instance_method(:foo) }
end
test "disabling default directive preprocessor" do
assert processors = @env.preprocessors['application/javascript']
processor = processors.detect {|p| p.is_a?(Sprockets::DirectiveProcessor) }
assert processor
@env.unregister_preprocessor('application/javascript', processor)
assert_equal "// =require \"notfound\";\n", @env["missing_require.js"].to_s
end
test "disabling processors by class name also disables processors which are instances of that class" do
space_and_whitespace_compressor = Class.new(WhitespaceCompressor)
@env.register_preprocessor('text/html', WhitespaceCompressor)
@env.register_preprocessor('text/html', WhitespaceCompressor.new)
@env.register_preprocessor('text/html', space_and_whitespace_compressor)
assert_equal 3, @env.preprocessors['text/html'].size
@env.unregister_preprocessor('text/html', WhitespaceCompressor)
assert_equal 1, @env.preprocessors['text/html'].size
assert_equal space_and_whitespace_compressor, @env.preprocessors['text/html'][0]
end
end
class TestCachedEnvironment < Sprockets::TestCase
include EnvironmentTests
def new_environment
Sprockets::Environment.new(".") do |env|
env.append_path(fixture_path('default'))
env.cache = {}
env.gzip = false
yield env if block_given?
end.cached
end
def setup
@env = new_environment
end
test "inherit the gzip option" do
assert_equal false, @env.gzip?
end
test "does not allow to change the gzip option" do
assert_raises RuntimeError do
@env.gzip = true
end
end
test "does not allow new mime types to be added" do
assert_raises RuntimeError do
@env.register_mime_type "application/javascript", extensions: [".jst"]
end
end
test "does not allow new bundle processors to be added" do
assert_raises RuntimeError do
@env.register_bundle_processor 'text/css', WhitespaceProcessor
end
end
test "does not allow bundle processors to be removed" do
assert_raises RuntimeError do
@env.unregister_bundle_processor 'text/css', WhitespaceProcessor
end
end
test "change in environment bundle_processors does not affect cache" do
env = Sprockets::Environment.new(".")
cached = env.cached
assert !cached.bundle_processors['text/css'].include?(WhitespaceProcessor)
env.register_bundle_processor 'text/css', WhitespaceProcessor
assert !cached.bundle_processors['text/css'].include?(WhitespaceProcessor)
end
test "does not allow css compressor to be changed" do
assert_raises RuntimeError do
@env.css_compressor = WhitespaceCompressor
end
end
test "does not allow js compressor to be changed" do
assert_raises RuntimeError do
@env.js_compressor = WhitespaceCompressor
end
end
end
|