Add missing new files from commit 131e09855e06
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / type_aliases / windowspath_spec.rb
diff --git a/3rdparty/modules/stdlib/spec/type_aliases/windowspath_spec.rb b/3rdparty/modules/stdlib/spec/type_aliases/windowspath_spec.rb
new file mode 100644 (file)
index 0000000..4edc430
--- /dev/null
@@ -0,0 +1,36 @@
+require 'spec_helper'
+
+if Puppet::Util::Package.versioncmp(Puppet.version, '4.5.0') >= 0
+  describe 'Stdlib::Windowspath' do
+    describe 'valid handling' do
+      ['C:\\', 'C:\\WINDOWS\\System32', 'C:/windows/system32', 'X:/foo/bar', 'X:\\foo\\bar', '\\\\host\\windows', 'X:/var/ůťƒ8', 'X:/var/ネット'].each do |value|
+        describe value.inspect do
+          it { is_expected.to allow_value(value) }
+        end
+      end
+    end
+
+    describe 'invalid path handling' do
+      context 'with garbage inputs' do
+        [
+          nil,
+          [nil],
+          [nil, nil],
+          { 'foo' => 'bar' },
+          {},
+          '',
+          'httds://notquiteright.org',
+          '/usr2/username/bin:/usr/local/bin:/usr/bin:.',
+          'C;//notright/here',
+          'C:noslashes',
+          'C:ネット',
+          'C:ůťƒ8',
+        ].each do |value|
+          describe value.inspect do
+            it { is_expected.not_to allow_value(value) }
+          end
+        end
+      end
+    end
+  end
+end