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

Unified Diff: recipe_modules/git/example.py

Issue 1693993002: Make git.checkout return the commit hash. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 4 years, 10 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
« recipe_modules/git/api.py ('K') | « recipe_modules/git/api.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_modules/git/example.py
diff --git a/recipe_modules/git/example.py b/recipe_modules/git/example.py
index dc9fe0a8772dbb46fceabadc4ab42432e4b8677e..e86791863d12087430860b750d212b680c2a85f1 100644
--- a/recipe_modules/git/example.py
+++ b/recipe_modules/git/example.py
@@ -26,18 +26,24 @@ def RunSteps(api):
True)
# You can use api.git.checkout to perform all the steps of a safe checkout.
- api.git.checkout(
+ set_got_revision=api.properties.get('set_got_revision')
+ retVal = api.git.checkout(
url,
ref=api.properties.get('revision'),
recursive=True,
submodule_update_force=submodule_update_force,
- set_got_revision=api.properties.get('set_got_revision'),
+ set_got_revision=set_got_revision,
curl_trace_file=curl_trace_file,
remote_name=api.properties.get('remote_name'),
display_fetch_size=api.properties.get('display_fetch_size'),
file_name=api.properties.get('checkout_file_name'),
submodule_update_recursive=submodule_update_recursive)
+ if set_got_revision:
+ assert retVal == api.properties['expected_got_revision'], (
+ "expected retVal to be %r but was %r" % (
+ api.properties['expected_got_revision'], retVal))
+
# count_objects shows number and size of objects in .git dir.
api.git.count_objects(
name='count-objects',
@@ -107,7 +113,10 @@ def GenTests(api):
yield (
api.test('set_got_revision') +
- api.properties(set_got_revision=True) +
+ api.properties(
+ set_got_revision=True,
+ expected_got_revision="deadbeef",
+ ) +
api.step_data('set got_revision',
stdout=api.raw_io.output('deadbeef'))
)
« recipe_modules/git/api.py ('K') | « recipe_modules/git/api.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698