Sha256: 065212a2fed2259010cb5a8252d2b597cb2e2b9fd09e1a40a7a634bc2396568e

Contents?: true

Size: 1.55 KB

Versions: 8

Compression:

Stored size: 1.55 KB

Contents

require './test/test_helper'

describe WebFont::Downloader do

  let(:destination_path) { "#{WebFont.test_root}/output" }
  before { FileUtils.rm(Dir.glob("#{destination_path}/*.ttf")) }
  after { FileUtils.rm(Dir.glob("#{destination_path}/*.ttf")) }

  describe '#download' do

    describe 'when fonts do not exist in local cache' do
      before { FileUtils.rm(Dir.glob("#{WebFont.test_root}/local_cache/*.ttf")) }
      after { FileUtils.rm(Dir.glob("#{WebFont.test_root}/local_cache/*.ttf")) }

      it 'downloads all fonts in the item' do
        downloader = WebFont::Downloader.new
        downloader.download('Open Sans', destination_path)

        Dir.glob(File.join(destination_path, '*.ttf')).size.must_equal 10
      end
    end

    describe 'when fonts are in local cache' do
      before do
        FileUtils.copy(Dir.glob('test/fonts/*.ttf'), 'test/local_cache/')
        FileUtils.rm(Dir.glob(File.join(destination_path, '*')))
      end
      after { FileUtils.rm(Dir.glob("#{WebFont.test_root}/local_cache/*.ttf")) }

      it 'calls FileUtils 10 times' do
        FileUtils.expects(:copy).with(instance_of(String), instance_of(String)).times(10)

        downloader = WebFont::Downloader.new
        downloader.download('Open Sans', destination_path)
      end

      it 'copies files from local cache' do
        Dir.glob('test/fonts/*.ttf').size.must_equal 11

        downloader = WebFont::Downloader.new
        downloader.download('Open Sans', destination_path)

        Dir.glob(File.join(destination_path, '*.ttf')).size.must_equal 10
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
web_font-0.1.11 test/lib/web_font/downloader_test.rb
web_font-0.1.10 test/lib/web_font/downloader_test.rb
web_font-0.1.9 test/lib/web_font/downloader_test.rb
web_font-0.1.7 test/lib/web_font/downloader_test.rb
web_font-0.1.6 test/lib/web_font/downloader_test.rb
web_font-0.1.5 test/lib/web_font/downloader_test.rb
web_font-0.1.4 test/lib/web_font/downloader_test.rb
web_font-0.1.3 test/lib/web_font/downloader_test.rb