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

Unified Diff: gclient_scm.py

Issue 195913002: gclient: in managed mode, warn if .gclient has a mismatched URL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Add GetActualRemoteURL and DoesRemoteURLMatch to SCMWrapper Created 6 years, 9 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
« gclient.py ('K') | « gclient.py ('k') | tests/gclient_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gclient_scm.py
diff --git a/gclient_scm.py b/gclient_scm.py
index af48b5f7f33b5984667abe2e4887f9f224e59737..0ea906fbb3afd687b436616337e72202aa0e7d74 100644
--- a/gclient_scm.py
+++ b/gclient_scm.py
@@ -8,6 +8,7 @@ import logging
import os
import posixpath
import re
+import shlex
import sys
import tempfile
import traceback
@@ -139,6 +140,24 @@ class SCMWrapper(object):
return getattr(self, command)(options, args, file_list)
+ def GetActualRemoteURL(self):
+ """Attempt to determine the remote URL for this SCMWrapper."""
borenet 2014/03/13 13:53:35 I just copied the new code here, because GitWrappe
iannucci 2014/03/13 18:27:27 yeah, that seems reasonable to me.
+ try:
+ return shlex.split(scm.GIT.Capture(
+ ['config', '--local', '--get-regexp', r'remote.*.url'],
+ self.checkout_path))[1]
+ except Exception:
+ pass
+ try:
+ return scm.SVN.CaptureLocalInfo([], self.checkout_path)['URL']
+ except Exception:
+ pass
+ return None
+
+ def DoesRemoteURLMatch(self):
+ """Determine whether the remote URL of this checkout is the expected URL."""
+ return self.GetActualRemoteURL().rstrip('/') == self.url.rstrip('/')
+
class GitWrapper(SCMWrapper):
"""Wrapper for Git"""
« gclient.py ('K') | « gclient.py ('k') | tests/gclient_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698