Add missing new files from commit 131e09855e06
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / type_aliases / httpsurl_spec.rb
diff --git a/3rdparty/modules/stdlib/spec/type_aliases/httpsurl_spec.rb b/3rdparty/modules/stdlib/spec/type_aliases/httpsurl_spec.rb
new file mode 100644 (file)
index 0000000..f8f503f
--- /dev/null
@@ -0,0 +1,35 @@
+require 'spec_helper'
+
+if Puppet::Util::Package.versioncmp(Puppet.version, '4.5.0') >= 0
+  describe 'Stdlib::HTTPSUrl' do
+    describe 'valid handling' do
+      ['https://hello.com', 'https://notcreative.org', 'https://notexciting.co.uk', 'https://graphemica.com/❤', 'https://graphemica.com/緩', 'HTTPS://FOO.com'].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',
+          'hptts:/nah',
+          'https;//notrightbutclose.org',
+          'http://graphemica.com/❤',
+          'http://graphemica.com/緩',
+        ].each do |value|
+          describe value.inspect do
+            it { is_expected.not_to allow_value(value) }
+          end
+        end
+      end
+    end
+  end
+end