You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
389 lines
14 KiB
Python
389 lines
14 KiB
Python
#!/usr/bin/env vpython3
|
|
# coding=utf-8
|
|
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
"""Unit tests for git_cl.py."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections.abc import Iterable
|
|
import io
|
|
import logging
|
|
import os
|
|
import sys
|
|
import tempfile
|
|
from typing import Iterable
|
|
import unittest
|
|
import urllib.parse
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
import git_auth
|
|
import scm
|
|
import scm_mock
|
|
|
|
|
|
class TestConfigChanger(unittest.TestCase):
|
|
|
|
maxDiff = None
|
|
|
|
def setUp(self):
|
|
self._global_state_view: Iterable[tuple[str,
|
|
list[str]]] = scm_mock.GIT(self)
|
|
|
|
@property
|
|
def global_state(self):
|
|
return dict(self._global_state_view)
|
|
|
|
def test_apply_new_auth(self):
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NEW_AUTH,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply('/some/fake/dir')
|
|
want = {
|
|
'/some/fake/dir': {
|
|
'credential.https://chromium.googlesource.com.helper':
|
|
['', 'luci'],
|
|
'http.cookiefile': [''],
|
|
'url.https://chromium.googlesource.com/chromium/tools/depot_tools.git.insteadof':
|
|
[
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git'
|
|
],
|
|
},
|
|
}
|
|
self.assertEqual(scm.GIT._dump_config_state(), want)
|
|
|
|
def test_apply_new_auth_sso(self):
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NEW_AUTH_SSO,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply('/some/fake/dir')
|
|
want = {
|
|
'/some/fake/dir': {
|
|
'protocol.sso.allow': ['always'],
|
|
'url.sso://chromium/.insteadof':
|
|
['https://chromium.googlesource.com/'],
|
|
'http.cookiefile': [''],
|
|
},
|
|
}
|
|
self.assertEqual(scm.GIT._dump_config_state(), want)
|
|
|
|
def test_apply_no_auth(self):
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NO_AUTH,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply('/some/fake/dir')
|
|
want = {
|
|
'/some/fake/dir': {},
|
|
}
|
|
self.assertEqual(scm.GIT._dump_config_state(), want)
|
|
|
|
def test_apply_chain_sso_new(self):
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NEW_AUTH_SSO,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply('/some/fake/dir')
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NEW_AUTH,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply('/some/fake/dir')
|
|
want = {
|
|
'/some/fake/dir': {
|
|
'credential.https://chromium.googlesource.com.helper':
|
|
['', 'luci'],
|
|
'http.cookiefile': [''],
|
|
'url.https://chromium.googlesource.com/chromium/tools/depot_tools.git.insteadof':
|
|
[
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git'
|
|
],
|
|
},
|
|
}
|
|
self.assertEqual(scm.GIT._dump_config_state(), want)
|
|
|
|
def test_apply_chain_new_sso(self):
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NEW_AUTH,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply('/some/fake/dir')
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NEW_AUTH_SSO,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply('/some/fake/dir')
|
|
want = {
|
|
'/some/fake/dir': {
|
|
'protocol.sso.allow': ['always'],
|
|
'url.sso://chromium/.insteadof':
|
|
['https://chromium.googlesource.com/'],
|
|
'http.cookiefile': [''],
|
|
},
|
|
}
|
|
self.assertEqual(scm.GIT._dump_config_state(), want)
|
|
|
|
def test_apply_chain_new_no(self):
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NEW_AUTH,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply('/some/fake/dir')
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NO_AUTH,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply('/some/fake/dir')
|
|
want = {
|
|
'/some/fake/dir': {},
|
|
}
|
|
self.assertEqual(scm.GIT._dump_config_state(), want)
|
|
|
|
def test_apply_chain_sso_no(self):
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NEW_AUTH_SSO,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply('/some/fake/dir')
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NO_AUTH,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply('/some/fake/dir')
|
|
want = {
|
|
'/some/fake/dir': {},
|
|
}
|
|
self.assertEqual(scm.GIT._dump_config_state(), want)
|
|
|
|
def test_apply_global_new_auth(self):
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NEW_AUTH,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply_global('/some/fake/dir')
|
|
want = {
|
|
'credential.https://chromium.googlesource.com.helper': ['', 'luci'],
|
|
}
|
|
self.assertEqual(self.global_state, want)
|
|
|
|
def test_apply_global_new_auth_sso(self):
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NEW_AUTH_SSO,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply_global('/some/fake/dir')
|
|
want = {
|
|
'protocol.sso.allow': ['always'],
|
|
'url.sso://chromium/.insteadof':
|
|
['https://chromium.googlesource.com/'],
|
|
}
|
|
self.assertEqual(self.global_state, want)
|
|
|
|
def test_apply_global_chain_sso_new(self):
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NEW_AUTH_SSO,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply_global('/some/fake/dir')
|
|
git_auth.ConfigChanger(
|
|
mode=git_auth.ConfigMode.NEW_AUTH,
|
|
remote_url=
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
|
|
).apply_global('/some/fake/dir')
|
|
want = {
|
|
'protocol.sso.allow': ['always'],
|
|
'credential.https://chromium.googlesource.com.helper': ['', 'luci'],
|
|
}
|
|
self.assertEqual(self.global_state, want)
|
|
|
|
|
|
class TestParseCookiefile(unittest.TestCase):
|
|
|
|
def test_ignore_comments(self):
|
|
f = io.StringIO('''\
|
|
# chromium.googlesource.com,FALSE,/,TRUE,2147483647,o,git-ayatane.google.com=1//fake-credential
|
|
''')
|
|
got = git_auth._parse_cookiefile(f)
|
|
want = git_auth._CookiefileInfo(
|
|
contains_gerrit=False,
|
|
contains_nongerrit=False,
|
|
)
|
|
self.assertEqual(got, want)
|
|
|
|
def test_gerrit(self):
|
|
f = io.StringIO('''\
|
|
chromium.googlesource.com,FALSE,/,TRUE,2147483647,o,git-ayatane.google.com=1//fake-credential
|
|
''')
|
|
got = git_auth._parse_cookiefile(f)
|
|
want = git_auth._CookiefileInfo(
|
|
contains_gerrit=True,
|
|
contains_nongerrit=False,
|
|
)
|
|
self.assertEqual(got, want)
|
|
|
|
def test_nongerrit(self):
|
|
f = io.StringIO('''\
|
|
github.com,FALSE,/,TRUE,2147483647,o,git-ayatane.google.com=1//fake-credential
|
|
''')
|
|
got = git_auth._parse_cookiefile(f)
|
|
want = git_auth._CookiefileInfo(
|
|
contains_gerrit=False,
|
|
contains_nongerrit=True,
|
|
)
|
|
self.assertEqual(got, want)
|
|
|
|
def test_both(self):
|
|
f = io.StringIO('''\
|
|
chromium.googlesource.com,FALSE,/,TRUE,2147483647,o,git-ayatane.google.com=1//fake-credential
|
|
github.com,FALSE,/,TRUE,2147483647,o,git-ayatane.google.com=1//fake-credential
|
|
''')
|
|
got = git_auth._parse_cookiefile(f)
|
|
want = git_auth._CookiefileInfo(
|
|
contains_gerrit=True,
|
|
contains_nongerrit=True,
|
|
)
|
|
self.assertEqual(got, want)
|
|
|
|
|
|
class TestConfigWizard(unittest.TestCase):
|
|
|
|
maxDiff = None
|
|
|
|
def setUp(self):
|
|
super().setUp()
|
|
self._global_state_view: Iterable[tuple[str,
|
|
list[str]]] = scm_mock.GIT(self)
|
|
self.ui = _FakeUI()
|
|
self.wizard = git_auth.ConfigWizard(self.ui)
|
|
|
|
@property
|
|
def global_state(self):
|
|
return dict(self._global_state_view)
|
|
|
|
def test_configure_sso_global(self):
|
|
parts = urllib.parse.urlsplit(
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git')
|
|
self.wizard._configure_sso(parts, scope='global')
|
|
want = {
|
|
'url.sso://chromium/.insteadof':
|
|
['https://chromium.googlesource.com/'],
|
|
}
|
|
self.assertEqual(self.global_state, want)
|
|
|
|
def test_configure_oauth_global(self):
|
|
parts = urllib.parse.urlsplit(
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git')
|
|
self.wizard._configure_oauth(parts, scope='global')
|
|
want = {
|
|
'credential.https://chromium.googlesource.com.helper': ['', 'luci'],
|
|
}
|
|
self.assertEqual(self.global_state, want)
|
|
|
|
def test_check_gitcookies_same(self):
|
|
with tempfile.NamedTemporaryFile() as gitcookies:
|
|
self.wizard._gitcookies = lambda: gitcookies.name
|
|
scm.GIT.SetConfig(os.getcwd(),
|
|
'http.cookiefile',
|
|
gitcookies.name,
|
|
scope='global')
|
|
got = self.wizard._check_gitcookies()
|
|
want = git_auth._GitcookiesSituation(
|
|
gitcookies_exists=True,
|
|
cookiefile=gitcookies.name,
|
|
cookiefile_exists=True,
|
|
divergent_cookiefiles=False,
|
|
)
|
|
self.assertEqual(got, want)
|
|
|
|
def test_check_gitcookies_different(self):
|
|
with tempfile.NamedTemporaryFile(
|
|
) as gitcookies, tempfile.NamedTemporaryFile() as cookiefile:
|
|
self.wizard._gitcookies = lambda: gitcookies.name
|
|
scm.GIT.SetConfig(os.getcwd(),
|
|
'http.cookiefile',
|
|
cookiefile.name,
|
|
scope='global')
|
|
got = self.wizard._check_gitcookies()
|
|
want = git_auth._GitcookiesSituation(
|
|
gitcookies_exists=True,
|
|
cookiefile=cookiefile.name,
|
|
cookiefile_exists=True,
|
|
divergent_cookiefiles=True,
|
|
)
|
|
self.assertEqual(got, want)
|
|
|
|
def test_check_gitcookies_missing_gitcookies(self):
|
|
with tempfile.NamedTemporaryFile() as cookiefile:
|
|
self.wizard._gitcookies = lambda: '/this-file-does-not-exist-yue'
|
|
scm.GIT.SetConfig(os.getcwd(),
|
|
'http.cookiefile',
|
|
cookiefile.name,
|
|
scope='global')
|
|
got = self.wizard._check_gitcookies()
|
|
want = git_auth._GitcookiesSituation(
|
|
gitcookies_exists=False,
|
|
cookiefile=cookiefile.name,
|
|
cookiefile_exists=True,
|
|
divergent_cookiefiles=False,
|
|
)
|
|
self.assertEqual(got, want)
|
|
|
|
def test_check_gitcookies_missing_cookiefile(self):
|
|
with tempfile.NamedTemporaryFile() as gitcookies:
|
|
self.wizard._gitcookies = lambda: gitcookies.name
|
|
scm.GIT.SetConfig(os.getcwd(),
|
|
'http.cookiefile',
|
|
'/this-file-does-not-exist-yue',
|
|
scope='global')
|
|
got = self.wizard._check_gitcookies()
|
|
want = git_auth._GitcookiesSituation(
|
|
gitcookies_exists=True,
|
|
cookiefile='/this-file-does-not-exist-yue',
|
|
cookiefile_exists=False,
|
|
divergent_cookiefiles=False,
|
|
)
|
|
self.assertEqual(got, want)
|
|
|
|
def test_check_gitcookies_unset(self):
|
|
with tempfile.NamedTemporaryFile() as gitcookies:
|
|
self.wizard._gitcookies = lambda: gitcookies.name
|
|
got = self.wizard._check_gitcookies()
|
|
want = git_auth._GitcookiesSituation(
|
|
gitcookies_exists=True,
|
|
cookiefile='',
|
|
cookiefile_exists=False,
|
|
divergent_cookiefiles=False,
|
|
)
|
|
self.assertEqual(got, want)
|
|
|
|
|
|
class _FakeUI(object):
|
|
"""Implements UserInterface for testing."""
|
|
|
|
def __init__(self, choices: Iterable[str] = ()):
|
|
self.choices: list[str] = list(choices)
|
|
|
|
def read_yn(self, prompt: str, *, default: bool | None = None) -> bool:
|
|
choice = self.choices.pop(0)
|
|
if choice == 'y':
|
|
return True
|
|
if choice == 'n':
|
|
return False
|
|
raise Exception(f'invalid choice for yn {choice!r}')
|
|
|
|
def read_line(self, prompt: str, *, check=lambda *any: True) -> str:
|
|
return self.choices.pop(0)
|
|
|
|
def write(self, s: str) -> None:
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
logging.basicConfig(
|
|
level=logging.DEBUG if '-v' in sys.argv else logging.ERROR)
|
|
unittest.main()
|