ldap-ber 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,27 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Refine StringIO
4
+ #
5
+ module BER
6
+ refine ::StringIO do
7
+ def read_ber(syntax = ::BER::ASN_SYNTAX)
8
+ ::BER.function.read_ber(self, syntax)
9
+ end
10
+
11
+ # alias read read_ber # overwrite default Socket method for compatibility with Connection
12
+ # # alias read_nonblock read_ber # overwrite default Socket method for compatibility with Connection
13
+
14
+ # def read_nonblock(*args)
15
+ # binding.pry
16
+ # read(*args)
17
+ # end
18
+
19
+ def read_ber_length
20
+ ::BER.function.read_ber_length(self)
21
+ end
22
+
23
+ def parse_ber_object(syntax, id, data)
24
+ ::BER.function.parse_ber_object(self, syntax, id, data)
25
+ end
26
+ end
27
+ end
@@ -0,0 +1,14 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Refine TrueClass
4
+ #
5
+ module BER
6
+ refine ::TrueClass do
7
+ # @return [String]
8
+ #
9
+ # @api public
10
+ def to_ber
11
+ (+"\001\001\xFF").force_encoding('ASCII-8BIT').freeze
12
+ end
13
+ end
14
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module BER
4
+ VERSION = '0.1.0'
5
+ end
@@ -0,0 +1,19 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler'
4
+ Bundler.setup
5
+
6
+ require 'simplecov'
7
+ SimpleCov.start do
8
+ add_filter '/spec/'
9
+ end
10
+
11
+ begin
12
+ require 'pry-byebug'
13
+ rescue LoadError
14
+ end
15
+
16
+ require 'ber'
17
+
18
+ require 'pathname'
19
+ SPEC_ROOT = Pathname(__FILE__).dirname
@@ -0,0 +1,50 @@
1
+ RSpec.describe BER do
2
+ describe 'hash mapping' do
3
+ it '#config' do
4
+ expect(BER.config).to be_kind_of(Hash)
5
+ expect(BER.config[:response]).to have_key(25)
6
+ expect(BER.config[:result]).to have_key(0)
7
+ expect(BER.config[:result]).to_not have_key(22)
8
+ end
9
+
10
+ it '#lookup' do
11
+ expect(BER.fetch(:response, 25)).to eql(:intermediate_response)
12
+ expect(BER.fetch(:result, 0)).to eql(:success)
13
+ end
14
+
15
+ it '#reverse_lookup' do
16
+ expect(BER.fetch(:response, :intermediate_response)).to eql(25)
17
+ expect(BER.fetch(:result, :success)).to eql(0)
18
+ end
19
+ end
20
+
21
+ describe 'syntax compilation' do
22
+ let(:syntax) do
23
+ {
24
+ application: {
25
+ constructed: {
26
+ 0 => :array, # LDAP BindRequest
27
+ 3 => :array # LDAP SearchRequest
28
+ },
29
+ primitive: {
30
+ 2 => :string, # ldapsearch sends this to unbind
31
+ }
32
+ },
33
+ context_specific: {
34
+ primitive: {
35
+ 0 => :string, # simple auth (password)
36
+ 7 => :string # present filter
37
+ },
38
+ constructed: {
39
+ 3 => :array # equality filter
40
+ }
41
+ }
42
+ }
43
+ end
44
+
45
+ it '#compile_syntax' do
46
+ expect(BER.compile_syntax({}).size).to eql(256)
47
+ expect(BER.compile_syntax(syntax).compact).to eql(%i[string array array string string array])
48
+ end
49
+ end
50
+ end
@@ -0,0 +1,46 @@
1
+ RSpec.describe 'BerIdentifiedString' do
2
+ using ::BER
3
+
4
+ context 'UTF8' do
5
+ let(:bis) { BER::BerIdentifiedString.new(data) }
6
+
7
+ describe 'with ascii data' do
8
+ let(:data) { 'some text'.force_encoding('UTF-8') }
9
+
10
+ it do
11
+ expect(bis.valid_encoding?).to be(true)
12
+ expect(bis.encoding.name).to eql('UTF-8')
13
+ end
14
+ end
15
+
16
+ describe 'with umlaut data' do
17
+ let(:data) { 'Müller'.force_encoding('UTF-8') }
18
+
19
+ it do
20
+ expect(bis.valid_encoding?).to be(true)
21
+ expect(bis.encoding.name).to eql('UTF-8')
22
+ end
23
+ end
24
+
25
+ describe 'with utf8 data' do
26
+ let(:data) { ['e4b8ad'].pack('H*').force_encoding('UTF-8') }
27
+
28
+ it do
29
+ expect(bis.valid_encoding?).to be(true)
30
+ expect(bis.encoding.name).to eql('UTF-8')
31
+ end
32
+ end
33
+ end
34
+
35
+ context 'BINARY' do
36
+ it do
37
+ data = ['6a31b4a12aa27a41aca9603f27dd5116'].pack('H*').force_encoding('ASCII-8BIT')
38
+ bis = BER::BerIdentifiedString.new(data)
39
+
40
+ expect(data.encoding.name).to eql('ASCII-8BIT')
41
+
42
+ expect(bis.valid_encoding?).to be(true)
43
+ expect(bis.encoding.name).to eql('ASCII-8BIT')
44
+ end
45
+ end
46
+ end
@@ -0,0 +1,32 @@
1
+ RSpec.describe Array, 'refined using ::BER' do
2
+ using ::BER
3
+
4
+ describe 'read_ber' do
5
+ it 'empty array' do
6
+ expect([].to_ber.read_ber).to eql([])
7
+ end
8
+
9
+ it 'array' do
10
+ expect([1, 2, 3].map { |i| i.to_ber }.to_ber.read_ber).to eql([1, 2, 3])
11
+ end
12
+ end
13
+
14
+ describe 'to_ber_control' do
15
+ it 'control code array' do
16
+ control_codes = []
17
+ control_codes << ['1.2.3'.to_ber, true.to_ber].to_ber_sequence
18
+ control_codes << ['1.7.9'.to_ber, false.to_ber].to_ber_sequence
19
+ control_codes = control_codes.to_ber_sequence
20
+
21
+ expect(control_codes).to eql([['1.2.3', true], ['1.7.9', false]].to_ber_control)
22
+ end
23
+
24
+ it 'wrap array if not nested' do
25
+ expect(['1.2.3', true].to_ber_control).to eql([['1.2.3', true]].to_ber_control)
26
+ end
27
+
28
+ it 'empty string if empty array' do
29
+ expect([].to_ber_control).to eql('')
30
+ end
31
+ end
32
+ end
@@ -0,0 +1,16 @@
1
+ #
2
+ # http://tools.ietf.org/html/rfc4511#section-5.1
3
+ #
4
+ RSpec.describe 'Boolean', 'refined using ::BER' do
5
+ using ::BER
6
+
7
+ it 'true' do
8
+ expect(true.to_ber).to eql("\x01\x01\xFF".b)
9
+ expect("\x01\x01\xFF".read_ber).to be(true)
10
+ end
11
+
12
+ it 'false' do
13
+ expect(false.to_ber).to eql("\x01\x01\x00".b)
14
+ expect("\x01\x01\x00".read_ber).to be(false)
15
+ end
16
+ end
@@ -0,0 +1,73 @@
1
+ RSpec.describe Integer, 'refined using ::BER' do
2
+ using ::BER
3
+
4
+ let(:sample) do
5
+ {
6
+ 0 => "\x02\x01\x00",
7
+ 1 => "\x02\x01\x01",
8
+ 127 => "\x02\x01\x7F",
9
+ 128 => "\x02\x02\x00\x80",
10
+ 255 => "\x02\x02\x00\xFF",
11
+ 256 => "\x02\x02\x01\x00",
12
+ 65_535 => "\x02\x03\x00\xFF\xFF",
13
+ 65_536 => "\x02\x03\x01\x00\x00",
14
+ 8_388_607 => "\x02\x03\x7F\xFF\xFF",
15
+ 8_388_608 => "\x02\x04\x00\x80\x00\x00",
16
+ 16_777_215 => "\x02\x04\x00\xFF\xFF\xFF",
17
+ 0x01000000 => "\x02\x04\x01\x00\x00\x00",
18
+ 0x3FFFFFFF => "\x02\x04\x3F\xFF\xFF\xFF",
19
+ 0x4FFFFFFF => "\x02\x04\x4F\xFF\xFF\xFF",
20
+
21
+ 5 => "\x02\x01\x05",
22
+ 500 => "\x02\x02\x01\xf4",
23
+ 50_000 => "\x02\x03\x00\xC3\x50",
24
+ 5_000_000_000 => "\x02\x05\x01\x2a\x05\xF2\x00",
25
+
26
+ -1 => "\x02\x01\xFF",
27
+ -127 => "\x02\x01\x81",
28
+ -128 => "\x02\x01\x80",
29
+ -255 => "\x02\x02\xFF\x01",
30
+ -256 => "\x02\x02\xFF\x00",
31
+ -65_535 => "\x02\x03\xFF\x00\x01",
32
+ -65_536 => "\x02\x03\xFF\x00\x00",
33
+ -65_537 => "\x02\x03\xFE\xFF\xFF",
34
+ -8_388_607 => "\x02\x03\x80\x00\x01",
35
+ -8_388_608 => "\x02\x03\x80\x00\x00",
36
+ -16_777_215 => "\x02\x04\xFF\x00\x00\x01"
37
+ }
38
+ end
39
+
40
+
41
+ it 'ASN_SYNTAX' do
42
+ expect("\002\001\006".read_ber(BER::ASN_SYNTAX)).to eql(6)
43
+ expect("\002\001\006".read_ber).to eql(6)
44
+ end
45
+
46
+ it '#to_ber' do
47
+ sample.each do |int, encoded_int|
48
+ expect(int.to_ber).to eql(encoded_int.b)
49
+ end
50
+ end
51
+
52
+ it '#read_ber' do
53
+ sample.each do |int, encoded_int|
54
+ expect(encoded_int.b.read_ber).to eql(int)
55
+ end
56
+ end
57
+
58
+ describe 'round trip' do
59
+ it 'powers of two' do
60
+ 100.times do |i|
61
+ n = 2 << i
62
+ expect(n.to_ber.read_ber).to eql(n)
63
+ end
64
+ end
65
+
66
+ it 'powers of ten' do
67
+ 100.times do |i|
68
+ n = 5 * 10**i
69
+ expect(n.to_ber.read_ber).to eql(n)
70
+ end
71
+ end
72
+ end
73
+ end
@@ -0,0 +1,33 @@
1
+ RSpec.describe String, 'refined using ::BER' do
2
+ using ::BER
3
+
4
+ describe 'ASN_SYNTAX' do
5
+ it 'decode string' do
6
+ expect("\004\007testing".read_ber).to eql('testing')
7
+ # expect("\004\007testing".read_ber(BER::ASN_SYNTAX)).to eql('testing')
8
+ end
9
+ end
10
+
11
+ describe 'utf8' do
12
+ it 'encode utf8 strings' do
13
+ expect("\u00e5".force_encoding('UTF-8').to_ber).to eql("\x04\x02\xC3\xA5".b)
14
+ end
15
+
16
+ it 'utf8 encodable strings' do
17
+ expect('teststring'.encode('US-ASCII').to_ber).to eql("\x04\nteststring")
18
+ end
19
+
20
+ it 'non utf8 encodable strings' do
21
+ expect("\x81".to_ber).to eql("\x04\x01\x81".b)
22
+ end
23
+ end
24
+
25
+ # This is used for searching for GUIDs in Active Directory
26
+ describe 'binary' do
27
+ it 'encode data' do
28
+ expect(['6a31b4a12aa27a41aca9603f27dd5116'].pack('H*').to_ber_bin).to eql(
29
+ "\x04\x10" + "j1\xB4\xA1*\xA2zA\xAC\xA9`?'\xDDQ\x16".b
30
+ )
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,38 @@
1
+ RSpec.describe 'LDAP Requests' do
2
+ using ::BER
3
+
4
+ describe 'consumed' do
5
+ let(:bind_request) do
6
+ "0$\002\001\001`\037\002\001\003\004\rAdministrator\200\vad_is_bogus"
7
+ end
8
+
9
+ it 'decode bind request' do
10
+ expect(bind_request.read_ber(BER::ASN_SYNTAX)).to eql([1, [3, 'Administrator', 'ad_is_bogus']])
11
+ end
12
+
13
+ xit 'exception does not modify string' do
14
+ duplicate = bind_request.dup
15
+
16
+ expect_any_instance_of(StringIO).to receive(:read_ber).and_raise(BER::Error)
17
+
18
+ expect { duplicate.read_ber!(BER::ASN_SYNTAX) }.to raise_error(BER::Error)
19
+
20
+ expect(bind_request).to eql(duplicate)
21
+ end
22
+ end
23
+
24
+ describe 'ASN_SYNTAX' do
25
+ let(:bind_request) do
26
+ "0$\002\001\001`\037\002\001\003\004\rAdministrator\200\vad_is_bogus UNCONSUMED".b
27
+ end
28
+
29
+ it 'parse ber' do
30
+ expect(bind_request.read_ber!(BER::ASN_SYNTAX)).to eql([1, [3, 'Administrator', 'ad_is_bogus']])
31
+ end
32
+
33
+ it 'unconsumed message' do
34
+ bind_request.read_ber!(BER::ASN_SYNTAX)
35
+ expect(bind_request).to eql(' UNCONSUMED')
36
+ end
37
+ end
38
+ end
metadata ADDED
@@ -0,0 +1,159 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ldap-ber
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Peter Hamilton
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-02-19 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: dry-core
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.4'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.4'
27
+ - !ruby/object:Gem::Dependency
28
+ name: dry-initializer
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '3.0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '3.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '13.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '13.0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '3.9'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '3.9'
83
+ description: Refactored from Net:LDAP gem.
84
+ email:
85
+ - pete@peterdavidhamilton.com
86
+ executables: []
87
+ extensions: []
88
+ extra_rdoc_files: []
89
+ files:
90
+ - ".gitignore"
91
+ - ".rspec"
92
+ - ".rubocop.yml"
93
+ - ".rubocop_todo.yml"
94
+ - Gemfile
95
+ - LICENSE
96
+ - README.md
97
+ - Rakefile
98
+ - bin/console
99
+ - bin/setup
100
+ - ldap-ber.gemspec
101
+ - lib/ber.rb
102
+ - lib/ber.yaml
103
+ - lib/ber/function.rb
104
+ - lib/ber/identified.rb
105
+ - lib/ber/identified/array.rb
106
+ - lib/ber/identified/null.rb
107
+ - lib/ber/identified/oid.rb
108
+ - lib/ber/identified/string.rb
109
+ - lib/ber/refinements.rb
110
+ - lib/ber/refinements/array.rb
111
+ - lib/ber/refinements/false_class.rb
112
+ - lib/ber/refinements/integer.rb
113
+ - lib/ber/refinements/io.rb
114
+ - lib/ber/refinements/ssl_socket.rb
115
+ - lib/ber/refinements/string.rb
116
+ - lib/ber/refinements/string_io.rb
117
+ - lib/ber/refinements/true_class.rb
118
+ - lib/ber/version.rb
119
+ - spec/spec_helper.rb
120
+ - spec/unit/ber_spec.rb
121
+ - spec/unit/identified/identified_string_spec.rb
122
+ - spec/unit/refinements/array_spec.rb
123
+ - spec/unit/refinements/boolean_spec.rb
124
+ - spec/unit/refinements/integer_spec.rb
125
+ - spec/unit/refinements/string_spec.rb
126
+ - spec/unit/request_spec.rb
127
+ homepage: https://gitlab.com/peterdavidhamilton/ldap-ber
128
+ licenses:
129
+ - MIT
130
+ metadata:
131
+ yard.run: yri
132
+ post_install_message:
133
+ rdoc_options: []
134
+ require_paths:
135
+ - lib
136
+ required_ruby_version: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ version: 2.4.0
141
+ required_rubygems_version: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ requirements: []
147
+ rubygems_version: 3.1.4
148
+ signing_key:
149
+ specification_version: 4
150
+ summary: 'LDAP Basic Encoding Rules: used by rom-ldap'
151
+ test_files:
152
+ - spec/spec_helper.rb
153
+ - spec/unit/ber_spec.rb
154
+ - spec/unit/identified/identified_string_spec.rb
155
+ - spec/unit/refinements/array_spec.rb
156
+ - spec/unit/refinements/boolean_spec.rb
157
+ - spec/unit/refinements/integer_spec.rb
158
+ - spec/unit/refinements/string_spec.rb
159
+ - spec/unit/request_spec.rb