File: fieldset_shared.rb

package info (click to toggle)
ruby-ntlm 0.6.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 408 kB
  • sloc: ruby: 2,663; makefile: 6
file content (239 lines) | stat: -rw-r--r-- 6,915 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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
shared_examples_for 'a fieldset' do |fields|

  subject(:fieldset_class) do
    Class.new(described_class)
  end

  context 'the class' do
    it { should respond_to :string }
    it { should respond_to :int16LE }
    it { should respond_to :int32LE }
    it { should respond_to :int64LE }
    it { should respond_to :security_buffer }
    it { should respond_to :prototypes }
    it { should respond_to :names }
    it { should respond_to :types }
    it { should respond_to :opts }

    context 'adding a String Field' do
      before(:each) do
        fieldset_class.string(:test_string, { :value => 'Test'})
      end

      it 'should set the prototypes correctly' do
        expect(fieldset_class.prototypes).to include([:test_string, Net::NTLM::String, {:value=>"Test"}])
      end

      it 'should set the names correctly' do
        expect(fieldset_class.names).to include(:test_string)
      end

      it 'should set the types correctly' do
        expect(fieldset_class.types).to include(Net::NTLM::String)
      end

      it 'should set the opts correctly' do
        expect(fieldset_class.opts).to include({:value => 'Test'})
      end

      context 'when creating an instance' do
        let(:fieldset_object) do
          fieldset_class.new
        end

        it 'should have the new accessor' do
          expect(fieldset_object).to respond_to(:test_string)
        end

        it 'should have the correct default value' do
          expect(fieldset_object.test_string).to eq('Test')
        end
      end
    end

    context 'adding a Int16LE Field' do
      before(:each) do
        fieldset_class.int16LE(:test_int, { :value => 15})
      end

      it 'should set the prototypes correctly' do
        expect(fieldset_class.prototypes).to include([:test_int, Net::NTLM::Int16LE, {:value=>15}])
      end

      it 'should set the names correctly' do
        expect(fieldset_class.names).to include(:test_int)
      end

      it 'should set the types correctly' do
        expect(fieldset_class.types).to include(Net::NTLM::Int16LE)
      end

      it 'should set the opts correctly' do
        expect(fieldset_class.opts).to include({:value => 15})
      end

      context 'when creating an instance' do
        let(:fieldset_object) do
          fieldset_class.new
        end

        it 'should have the new accessor' do
          expect(fieldset_object).to respond_to(:test_int)
        end

        it 'should have the correct default value' do
          expect(fieldset_object.test_int).to eq(15)
        end
      end
    end

    context 'adding a Int32LE Field' do
      before(:each) do
        fieldset_class.int32LE(:test_int, { :value => 15})
      end

      it 'should set the prototypes correctly' do
        expect(fieldset_class.prototypes).to include([:test_int, Net::NTLM::Int32LE, {:value=>15}])
      end

      it 'should set the names correctly' do
        expect(fieldset_class.names).to include(:test_int)
      end

      it 'should set the types correctly' do
        expect(fieldset_class.types).to include(Net::NTLM::Int32LE)
      end

      it 'should set the opts correctly' do
        expect(fieldset_class.opts).to include({:value => 15})
      end

      context 'when creating an instance' do
        let(:fieldset_object) do
          fieldset_class.new
        end

        it 'should have the new accessor' do
          expect(fieldset_object).to respond_to(:test_int)
        end

        it 'should have the correct default value' do
          expect(fieldset_object.test_int).to eq(15)
        end
      end
    end

    context 'adding a Int64LE Field' do
      before(:each) do
        fieldset_class.int64LE(:test_int, { :value => 15})
      end

      it 'should set the prototypes correctly' do
        expect(fieldset_class.prototypes).to include([:test_int, Net::NTLM::Int64LE, {:value=>15}])
      end

      it 'should set the names correctly' do
        expect(fieldset_class.names).to include(:test_int)
      end

      it 'should set the types correctly' do
        expect(fieldset_class.types).to include(Net::NTLM::Int64LE)
      end

      it 'should set the opts correctly' do
        expect(fieldset_class.opts).to include({:value => 15})
      end

      context 'when creating an instance' do
        let(:fieldset_object) do
          fieldset_class.new
        end

        it 'should have the new accessor' do
          expect(fieldset_object).to respond_to(:test_int)
        end

        it 'should have the correct default value' do
          expect(fieldset_object.test_int).to eq(15)
        end
      end
    end

    context 'adding a SecurityBuffer Field' do
      before(:each) do
        fieldset_class.security_buffer(:test_buffer, { :value => 15})
      end

      it 'should set the prototypes correctly' do
        expect(fieldset_class.prototypes).to include([:test_buffer, Net::NTLM::SecurityBuffer, {:value=>15}])
      end

      it 'should set the names correctly' do
        expect(fieldset_class.names).to include(:test_buffer)
      end

      it 'should set the types correctly' do
        expect(fieldset_class.types).to include(Net::NTLM::SecurityBuffer)
      end

      it 'should set the opts correctly' do
        expect(fieldset_class.opts).to include({:value => 15})
      end

      context 'when creating an instance' do
        let(:fieldset_object) do
          fieldset_class.new
        end

        it 'should have the new accessor' do
          expect(fieldset_object).to respond_to :test_buffer
        end

        it 'should have the correct default value' do
          expect(fieldset_object.test_buffer).to eq(15)
        end
      end
    end

  end

  context 'an instance' do

    subject(:fieldset_object) do
      # FieldSet Base Class and Message Base Class
      # have no fields by default and thus cannot be initialized
      # currently. Clumsy workaround for now.
      if described_class.names.empty?
        described_class.string(:test_string, { :value => 'Test', :active => true, :size => 4})
      end
      described_class.new
    end

    it { should respond_to :serialize }
    it { should respond_to :parse }
    it { should respond_to :size }
    it { should respond_to :enable }
    it { should respond_to :disable }

    context 'fields' do
      fields.each do |field|
        it { should respond_to field[:name] }

        context "#{field[:name]}" do
          it "should be a #{field[:class].to_s}" do
            expect(fieldset_object[field[:name]].class).to eq(field[:class])
          end

          it "should have a default value of #{field[:value]}" do
            expect(fieldset_object[field[:name]].value).to eq(field[:value])
          end

          it "should have active set to #{field[:active]}" do
            expect(fieldset_object[field[:name]].active).to eq(field[:active])
          end
        end
      end
    end

  end
end