mirror of
https://github.com/zxing/zxing.git
synced 2025-02-21 02:55:27 -08:00
git-svn-id: https://zxing.googlecode.com/svn/trunk@1241 59b500cc-1b3d-0410-9834-0bbf25fbcc57
41 lines
1 KiB
Ruby
Executable file
41 lines
1 KiB
Ruby
Executable file
#!/usr/bin/env jruby --headless -rubygems
|
|
|
|
require File.expand_path( File.dirname(__FILE__) + '/../test_helper')
|
|
require 'zxing/decodable'
|
|
|
|
class DecodableTest < Test::Unit::TestCase
|
|
|
|
class Object::File
|
|
include Decodable
|
|
end
|
|
|
|
class URL
|
|
include Decodable
|
|
def initialize(path)
|
|
@path = path
|
|
end
|
|
def path; @path end
|
|
end
|
|
|
|
context "A Decodable module" do
|
|
setup do
|
|
@file = File.open( File.expand_path( File.dirname(__FILE__) + '/../qrcode.png' ))
|
|
@uri = URL.new "http://2d-code.co.uk/images/bbc-logo-in-qr-code.gif"
|
|
@bad_uri = URL.new "http://google.com"
|
|
end
|
|
|
|
should "provide #decode to decode the return value of #path" do
|
|
assert_equal @file.decode, ZXing.decode(@file.path)
|
|
assert_equal @uri.decode, ZXing.decode(@uri.path)
|
|
assert_nil @bad_uri.decode
|
|
end
|
|
|
|
should "provide #decode! as well" do
|
|
assert_equal @file.decode!, ZXing.decode(@file.path)
|
|
assert_equal @uri.decode!, ZXing.decode(@uri.path)
|
|
assert_raise(NativeException) { @bad_uri.decode! }
|
|
end
|
|
end
|
|
|
|
end
|