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
|
require 'user_agent'
shared_examples_for "Edge browser" do
it "should return 'Edge' as its browser" do
expect(@useragent.browser).to eq("Edge")
end
it "should return 'Windows' as its platform" do
expect(@useragent.platform).to eq("Windows")
end
end
describe "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240" do
before do
@useragent = UserAgent.parse("Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.10240")
end
it_should_behave_like "Edge browser"
it "should return '12.10240' as its version" do
expect(@useragent.version).to eq("12.10240")
end
it "should return 'Windows 10' as its os" do
expect(@useragent.os).to eq("Windows 10")
end
end
describe "Mozilla/5.0 SHC; SHC-Unit-04973; SHC-HTS; SHC-KIOSK; SHC-MAC-0000 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586" do
before do
@useragent = UserAgent.parse("Mozilla/5.0 SHC; SHC-Unit-04973; SHC-HTS; SHC-KIOSK; SHC-MAC-0000 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2486.0 Safari/537.36 Edge/13.10586")
end
it_should_behave_like "Edge browser"
it "should return '13.10586' as its version" do
expect(@useragent.version).to eq("13.10586")
end
it "should return 'Windows 10' as its os" do
expect(@useragent.os).to eq("Windows 10")
end
end
|