blob: 5c6473e70b8302ad61257d82dd56c1f990fb05a7 (
plain)
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
|
# encoding: UTF-8
#!/usr/bin/env ruby
require 'spec_helper'
require 'puppet/util/windows'
describe "Puppet::Util::Windows::String", :if => Puppet.features.microsoft_windows? do
UTF16_NULL = [0, 0]
def wide_string(str)
Puppet::Util::Windows::String.wide_string(str)
end
def converts_to_wide_string(string_value)
expected = string_value.encode(Encoding::UTF_16LE)
expected_bytes = expected.bytes.to_a + UTF16_NULL
wide_string(string_value).bytes.to_a.should == expected_bytes
end
context "wide_string" do
it "should return encoding of UTF-16LE" do
wide_string("bob").encoding.should == Encoding::UTF_16LE
end
it "should return valid encoding" do
wide_string("bob").valid_encoding?.should be_true
end
it "should convert an ASCII string" do
converts_to_wide_string("bob".encode(Encoding::US_ASCII))
end
it "should convert a UTF-8 string" do
converts_to_wide_string("bob".encode(Encoding::UTF_8))
end
it "should convert a UTF-16LE string" do
converts_to_wide_string("bob\u00E8".encode(Encoding::UTF_16LE))
end
it "should convert a UTF-16BE string" do
converts_to_wide_string("bob\u00E8".encode(Encoding::UTF_16BE))
end
it "should convert an UTF-32LE string" do
converts_to_wide_string("bob\u00E8".encode(Encoding::UTF_32LE))
end
it "should convert an UTF-32BE string" do
converts_to_wide_string("bob\u00E8".encode(Encoding::UTF_32BE))
end
it "should return a nil when given a nil" do
wide_string(nil).should == nil
end
end
end
|