compass/spec/sprites_spec.rb

241 lines
6.0 KiB
Ruby
Raw Normal View History

require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
require "compass/sprites"
describe Compass::Sprites do
before :each do
2010-10-17 14:18:04 +00:00
@images_src_path = File.join(File.dirname(__FILE__), 'test_project', 'public', 'images')
@images_tmp_path = File.join(File.dirname(__FILE__), 'test_project', 'public', 'images-tmp')
FileUtils.cp_r @images_src_path, @images_tmp_path
Compass.configuration.images_path = @images_tmp_path
Compass.configure_sass_plugin!
Compass::Sprites.reset
end
2010-10-17 14:18:04 +00:00
after :each do
FileUtils.rm_r @images_tmp_path
end
def image_size(file)
IO.read(File.join(@images_tmp_path, file))[0x10..0x18].unpack('NN')
end
def render(scss)
scss = %Q(@import "compass"; #{scss})
options = Compass.sass_engine_options
2010-10-14 22:41:41 +00:00
options[:line_comments] = false
options[:style] = :expanded
options[:syntax] = :scss
options[:load_paths] << Compass::Sprites.new
css = Sass::Engine.new(scss, options).render
# reformat to fit result of heredoc:
" #{css.gsub('@charset "UTF-8";', '').gsub(/\n/, "\n ").strip}\n"
end
2010-10-17 13:27:59 +00:00
# DEFAULT USAGE:
it "should generate sprite classes" do
css = render <<-SCSS
@import "squares/*.png";
@include all-squares-sprites;
SCSS
css.should == <<-CSS
.squares-sprite, .squares-10x10, .squares-20x20 {
2010-10-14 23:24:14 +00:00
background: url('/squares.png') no-repeat;
}
.squares-10x10 {
2010-10-14 23:24:14 +00:00
background-position: 0 0;
}
.squares-20x20 {
2010-10-14 23:24:14 +00:00
background-position: 0 -10px;
}
CSS
2010-10-17 14:18:04 +00:00
image_size('squares.png').should == [20, 30]
end
it "should generate sprite classes with dimensions" do
css = render <<-SCSS
$squares-sprite-dimensions: true;
@import "squares/*.png";
@include all-squares-sprites;
SCSS
css.should == <<-CSS
.squares-sprite, .squares-10x10, .squares-20x20 {
2010-10-14 23:24:14 +00:00
background: url('/squares.png') no-repeat;
}
.squares-10x10 {
background-position: 0 0;
height: 10px;
2010-10-14 23:24:14 +00:00
width: 10px;
}
.squares-20x20 {
background-position: 0 -10px;
height: 20px;
2010-10-14 23:24:14 +00:00
width: 20px;
}
CSS
2010-10-17 14:18:04 +00:00
image_size('squares.png').should == [20, 30]
end
2010-10-14 22:41:41 +00:00
it "should provide sprite mixin" do
css = render <<-SCSS
@import "squares/*.png";
.cubicle {
@include squares-sprite("10x10");
}
.large-cube {
@include squares-sprite("20x20", true);
}
SCSS
css.should == <<-CSS
.squares-sprite, .cubicle, .large-cube {
2010-10-14 23:24:14 +00:00
background: url('/squares.png') no-repeat;
}
2010-10-14 22:41:41 +00:00
.cubicle {
background-position: 0 0;
}
.large-cube {
background-position: 0 -10px;
height: 20px;
width: 20px;
}
CSS
2010-10-17 14:18:04 +00:00
image_size('squares.png').should == [20, 30]
2010-10-14 22:49:23 +00:00
end
2010-10-17 13:27:59 +00:00
# CUSTOMIZATIONS:
2010-10-14 22:49:23 +00:00
it "should be possible to change the base class" do
css = render <<-SCSS
$squares-sprite-base-class: ".circles";
@import "squares/*.png";
SCSS
css.should == <<-CSS
.circles {
2010-10-14 23:24:14 +00:00
background: url('/squares.png') no-repeat;
}
2010-10-14 22:49:23 +00:00
CSS
2010-10-17 14:18:04 +00:00
image_size('squares.png').should == [20, 30]
2010-10-14 22:41:41 +00:00
end
2010-10-17 13:27:59 +00:00
it "should calculate the spacing between images but not before first image" do
css = render <<-SCSS
$squares-10x10-spacing: 33px;
@import "squares/*.png";
@include all-squares-sprites;
SCSS
css.should == <<-CSS
.squares-sprite, .squares-10x10, .squares-20x20 {
background: url('/squares.png') no-repeat;
}
.squares-10x10 {
background-position: 0 0;
}
.squares-20x20 {
background-position: 0 -43px;
}
CSS
2010-10-17 14:18:04 +00:00
image_size('squares.png').should == [20, 63]
2010-10-17 13:27:59 +00:00
end
it "should calculate the spacing between images" do
css = render <<-SCSS
$squares-20x20-spacing: 33px;
@import "squares/*.png";
@include all-squares-sprites;
SCSS
css.should == <<-CSS
.squares-sprite, .squares-10x10, .squares-20x20 {
background: url('/squares.png') no-repeat;
}
.squares-10x10 {
background-position: 0 0;
}
.squares-20x20 {
background-position: 0 -43px;
}
CSS
2010-10-17 14:18:04 +00:00
image_size('squares.png').should == [20, 63]
2010-10-17 13:27:59 +00:00
end
it "should calculate the maximum spacing between images" do
css = render <<-SCSS
$squares-10x10-spacing: 44px;
$squares-20x20-spacing: 33px;
@import "squares/*.png";
@include all-squares-sprites;
SCSS
css.should == <<-CSS
.squares-sprite, .squares-10x10, .squares-20x20 {
background: url('/squares.png') no-repeat;
}
.squares-10x10 {
background-position: 0 0;
}
.squares-20x20 {
background-position: 0 -54px;
}
CSS
2010-10-17 14:18:04 +00:00
image_size('squares.png').should == [20, 74]
2010-10-17 13:27:59 +00:00
end
it "should calculate the maximum spacing between images in reversed order" do
css = render <<-SCSS
$squares-10x10-spacing: 33px;
$squares-20x20-spacing: 44px;
@import "squares/*.png";
@include all-squares-sprites;
SCSS
css.should == <<-CSS
.squares-sprite, .squares-10x10, .squares-20x20 {
background: url('/squares.png') no-repeat;
}
.squares-10x10 {
background-position: 0 0;
}
.squares-20x20 {
background-position: 0 -54px;
}
CSS
2010-10-17 14:18:04 +00:00
image_size('squares.png').should == [20, 74]
2010-10-17 13:27:59 +00:00
end
2010-10-17 13:44:29 +00:00
it "should calculate the default spacing between images" do
css = render <<-SCSS
$squares-spacing: 22px;
@import "squares/*.png";
@include all-squares-sprites;
SCSS
css.should == <<-CSS
.squares-sprite, .squares-10x10, .squares-20x20 {
background: url('/squares.png') no-repeat;
}
.squares-10x10 {
background-position: 0 0;
}
.squares-20x20 {
background-position: 0 -32px;
}
CSS
2010-10-17 14:18:04 +00:00
image_size('squares.png').should == [20, 52]
2010-10-17 13:44:29 +00:00
end
2010-10-14 22:41:41 +00:00
end