File: device_detector_spec.rb

package info (click to toggle)
ruby-device-detector 1.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, forky, sid, trixie
  • size: 3,104 kB
  • sloc: ruby: 1,224; makefile: 5
file content (218 lines) | stat: -rw-r--r-- 3,618 bytes parent folder | download
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
require_relative 'spec_helper'

describe DeviceDetector do

  subject { DeviceDetector.new(user_agent) }

  alias :client :subject

  describe 'known user agent' do

    describe 'desktop chrome browser' do

      let(:user_agent) { 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/30.0.1599.69' }

      describe '#name' do

        it 'returns the name' do
          client.name.must_equal 'Chrome'
        end

      end

      describe '#full_version' do

        it 'returns the full version' do
          client.full_version.must_equal '30.0.1599.69'
        end

      end

      describe '#os_name' do

        it 'returns the operating system name' do
          client.os_name.must_equal 'Mac'
        end

      end

      describe '#os_full_version' do

        it 'returns the operating system full version' do
          client.os_full_version.must_equal '10.8.5'
        end

      end

      describe '#known?' do

        it 'returns true' do
          client.known?.must_equal true
        end

      end

      describe '#bot?' do

        it 'returns false' do
          client.bot?.must_equal false
        end

      end

      describe '#bot_name' do

        it 'returns nil' do
          client.bot_name.must_be_nil
        end

      end

    end

    describe 'firefox mobile phone' do

      let(:user_agent) {'Mozilla/5.0 (Android 7.0; Mobile; rv:53.0) Gecko/53.0 Firefox/53.0'}

      it 'detects smartphone' do
        client.device_type.must_equal 'smartphone'
      end

    end

    describe 'firefox mobile tablet' do

      let(:user_agent) {'Mozilla/5.0 (Android 6.0.1; Tablet; rv:47.0) Gecko/47.0 Firefox/47.0'}

      it 'detects tablet' do
        client.device_type.must_equal 'tablet'
      end

    end

  end

  describe 'unknown user agent' do

    let(:user_agent) { 'garbage123' }

    describe '#name' do

      it 'returns nil' do
        client.name.must_be_nil
      end

    end

    describe '#full_version' do

      it 'returns nil' do
        client.full_version.must_be_nil
      end

    end

    describe '#os_name' do

      it 'returns nil' do
        client.os_name.must_be_nil
      end

    end

    describe '#os_full_version' do

      it 'returns nil' do
        client.os_full_version.must_be_nil
      end

    end

    describe '#known?' do

      it 'returns false' do
        client.known?.must_equal false
      end

    end

    describe '#bot?' do

      it 'returns false' do
        client.bot?.must_equal false
      end

    end

    describe '#bot_name' do

      it 'returns nil' do
        client.bot_name.must_be_nil
      end

    end

  end

  describe 'bot' do

    let(:user_agent) { 'Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)' }

    describe '#name' do

      it 'returns nil' do
        client.name.must_be_nil
      end

    end

    describe '#full_version' do

      it 'returns nil' do
        client.full_version.must_be_nil
      end

    end

    describe '#os_name' do

      it 'returns nil' do
        client.os_name.must_be_nil
      end

    end

    describe '#os_full_version' do

      it 'returns nil' do
        client.os_full_version.must_be_nil
      end

    end

    describe '#known?' do

      it 'returns false' do
        client.known?.must_equal false
      end

    end

    describe '#bot?' do

      it 'returns true' do
        client.bot?.must_equal true
      end

    end

    describe '#bot_name' do

      it 'returns the name of the bot' do
        client.bot_name.must_equal 'Googlebot'
      end

    end

  end
end