Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(370)

Unified Diff: recipe_modules/url/tests/validate_url.py

Issue 2868333004: Add URL recipe module from "depot_tools". (Closed)
Patch Set: Update comments with exceptions Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: recipe_modules/url/tests/validate_url.py
diff --git a/recipe_modules/url/tests/validate_url.py b/recipe_modules/url/tests/validate_url.py
new file mode 100644
index 0000000000000000000000000000000000000000..c2ba6162db7c5d6fd6d905cb140993aebad3ac7c
--- /dev/null
+++ b/recipe_modules/url/tests/validate_url.py
@@ -0,0 +1,30 @@
+# Copyright 2017 The LUCI Authors. All rights reserved.
+# Use of this source code is governed under the Apache License, Version 2.0
+# that can be found in the LICENSE file.
+
+DEPS = [
+ 'properties',
+ 'step',
+ 'url',
+]
+
+
+def RunSteps(api):
+ api.url.validate_url(api.properties['url_to_validate'])
+
+
+def GenTests(api):
+ yield (api.test('basic') +
+ api.properties(url_to_validate='https://example.com'))
+
+ yield (api.test('no_scheme') +
+ api.properties(url_to_validate='example.com') +
+ api.expect_exception('ValueError'))
+
+ yield (api.test('invalid_scheme') +
+ api.properties(url_to_validate='ftp://example.com') +
+ api.expect_exception('ValueError'))
+
+ yield (api.test('no_host') +
+ api.properties(url_to_validate='https://') +
+ api.expect_exception('ValueError'))
« no previous file with comments | « recipe_modules/url/tests/join.expected/basic.json ('k') | recipe_modules/url/tests/validate_url.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698