rucaptcha/spec/captcha_spec.rb

38 lines
1.1 KiB
Ruby
Raw Normal View History

require 'spec_helper'
describe RuCaptcha::Captcha do
describe '.random_chars' do
it 'should len equal config.len' do
2016-05-25 03:07:26 +00:00
expect(RuCaptcha::Captcha.random_chars.length).to eq(RuCaptcha.config.len)
end
it 'should return 0-9 and lower str' do
2016-05-25 03:07:26 +00:00
expect(RuCaptcha::Captcha.random_chars).to match(/[a-z0-9]/)
end
it 'should not include [0ol1]' do
2016-05-23 07:11:04 +00:00
10_000.times do
2016-05-25 03:07:26 +00:00
expect(RuCaptcha::Captcha.random_chars).not_to match(/[0ol1]/i)
end
end
end
describe '.random_color' do
it 'should return colorful array' do
allow(RuCaptcha.config).to receive(:style).and_return(:colorful)
colors = RuCaptcha::Captcha.random_color
expect(colors.uniq.size >= 2).to eq true
colors1 = RuCaptcha::Captcha.random_color
expect(colors).not_to eq colors1
end
it 'should return black color array' do
allow(RuCaptcha.config).to receive(:style).and_return(:black_white)
colors = RuCaptcha::Captcha.random_color
expect(colors.uniq.size).to eq 1
colors1 = RuCaptcha::Captcha.random_color
expect(colors).not_to eq colors1
end
end
end