sapling/eden/scm/tests/test-commitcloud-sync-workspacenames-t.py
Zeyi (Rice) Fan 92f6f35e7a mark all tests requiring Python 2
Summary:
This diff marks **ALL** mercurial tests requiring Python 2 feature.

After you fixes some tests, simply remove the `py2` feature requirement and that tests will be continuously run after your diff is landed.

To bypass this feature requirement, run the tests command with `HGTEST_FORCE_PY2=1`. For example:

```
HGTEST_FORCE_PY2=1 buck test //eden/scm/tests:hg_run_tests
```

or

```
HGTEST_FORCE_PY2=1 python run-tests.py
```

----

Basically this diff are created with the following commands:

```
$ sed -i 's/import feature\(.*\)$/import feature\1\n\nfeature.require(["py2"])/' test-*-t.py
$ sed -i '1s/^/#require py2\n/' test-*.t
$ ls | grep -P "^test.*(?<\!-t)\.py$" > list && vim -p $(cat list)
# manually adding feature requires for these Python tests.
```

(Note: this ignores all push blocking failures!)

ignore-conflict-markers

Reviewed By: singhsrb

Differential Revision: D19655148

fbshipit-source-id: 985e3ccb4010cc559049f1d89f8909bc2d9b5e20
2020-01-30 18:49:21 -08:00

138 lines
6.0 KiB
Python

# Copyright (c) Facebook, Inc. and its affiliates.
#
# This software may be used and distributed according to the terms of the
# GNU General Public License version 2 or any later version.
from __future__ import absolute_import
from testutil.dott import feature, sh, testtmp # noqa: F401
feature.require(["py2"])
sh % "cat" << r"""
[extensions]
amend =
commitcloud =
infinitepush =
rebase =
remotenames =
share =
[ui]
ssh = python "$TESTDIR/dummyssh"
[infinitepush]
branchpattern = re:scratch/.*
[commitcloud]
hostname = testhost
[experimental]
evolution = createmarkers, allowunstable
""" >> "$HGRCPATH"
sh % "setconfig 'remotefilelog.reponame=server'"
sh % "hg init server"
sh % "cd server"
sh % "cat" << r"""
[infinitepush]
server = yes
indextype = disk
storetype = disk
reponame = testrepo
""" >> ".hg/hgrc"
# Make shared part of config
sh % "cat" << r"""
[commitcloud]
servicetype = local
servicelocation = $TESTTMP
user_token_path = $TESTTMP
auth_help = visit https://localhost/oauth to generate a registration token
education_page = https://someurl.com/wiki/CommitCloud
owner_team = The Test Team @ FB
""" >> "shared.rc"
# Make a clone of the server
sh % "hg clone 'ssh://user@dummy/server' client1 -q"
sh % "cd client1"
sh % "cat ../shared.rc" >> ".hg/hgrc"
sh % "hg cloud auth -t xxxxxx" == r"""
setting authentication token
authentication successful"""
# Check generation of default workspace name based on user name and email
sh % "hg cloud join" == r"""
commitcloud: this repository is now connected to the 'user/test/default' workspace for the 'server' repo
commitcloud: synchronizing 'server' with 'user/test/default'
commitcloud: commits synchronized
finished in * (glob)"""
sh % "hg cloud leave" == "commitcloud: this repository is now disconnected from Commit Cloud Sync"
sh % "'HGUSER=Test Longname <test.longname@example.com>' hg cloud join" == r"""
commitcloud: this repository is now connected to the 'user/test.longname@example.com/default' workspace for the 'server' repo
commitcloud: synchronizing 'server' with 'user/test.longname@example.com/default'
commitcloud: commits synchronized
finished in * (glob)"""
sh % "hg cloud leave" == "commitcloud: this repository is now disconnected from Commit Cloud Sync"
sh % "'HGUSER=Test Longname <test.longname@example.com>' hg cloud join --config 'commitcloud.email_domain=example.com'" == r"""
commitcloud: this repository is now connected to the 'user/test.longname/default' workspace for the 'server' repo
commitcloud: synchronizing 'server' with 'user/test.longname/default'
commitcloud: commits synchronized
finished in * (glob)"""
sh % "hg cloud leave" == "commitcloud: this repository is now disconnected from Commit Cloud Sync"
sh % "'HGUSER=Another Domain <other.longname@example.org>' hg cloud join --config 'commitcloud.email_domain=example.com'" == r"""
commitcloud: this repository is now connected to the 'user/other.longname@example.org/default' workspace for the 'server' repo
commitcloud: synchronizing 'server' with 'user/other.longname@example.org/default'
commitcloud: commits synchronized
finished in * (glob)"""
sh % "hg cloud leave" == "commitcloud: this repository is now disconnected from Commit Cloud Sync"
# Can join workspaces using raw workspace names
sh % "hg cloud join --raw-workspace project/unsupported" == r"""
commitcloud: this repository is now connected to the 'project/unsupported' workspace for the 'server' repo
commitcloud: synchronizing 'server' with 'project/unsupported'
commitcloud: commits synchronized
finished in * (glob)"""
sh % "hg cloud leave" == "commitcloud: this repository is now disconnected from Commit Cloud Sync"
# Test deprecated joining a user workspace via full workspace name
sh % "hg cloud join -w user/other/work" == r"""
specifying full workspace names with '-w' is deprecated
(use '-u' to select another user's workspaces)
commitcloud: this repository is now connected to the 'user/other/work' workspace for the 'server' repo
commitcloud: synchronizing 'server' with 'user/other/work'
commitcloud: commits synchronized
finished in * (glob)"""
sh % "hg cloud leave" == "commitcloud: this repository is now disconnected from Commit Cloud Sync"
# But specifying a user and a workspace name like this just treats the workspace name as-is.
sh % "hg cloud join -u other -w user/nested/name" == r"""
commitcloud: this repository is now connected to the 'user/other/user/nested/name' workspace for the 'server' repo
commitcloud: synchronizing 'server' with 'user/other/user/nested/name'
commitcloud: commits synchronized
finished in * (glob)"""
sh % "hg cloud leave" == "commitcloud: this repository is now disconnected from Commit Cloud Sync"
# Test joining other users' workspaces the right way
sh % "hg cloud join -u other -w work" == r"""
commitcloud: this repository is now connected to the 'user/other/work' workspace for the 'server' repo
commitcloud: synchronizing 'server' with 'user/other/work'
commitcloud: commits synchronized
finished in * (glob)"""
sh % "hg cloud leave" == "commitcloud: this repository is now disconnected from Commit Cloud Sync"
# Test joining other users' default workspace
sh % "hg cloud join -u other" == r"""
commitcloud: this repository is now connected to the 'user/other/default' workspace for the 'server' repo
commitcloud: synchronizing 'server' with 'user/other/default'
commitcloud: commits synchronized
finished in * (glob)"""
sh % "hg cloud leave" == "commitcloud: this repository is now disconnected from Commit Cloud Sync"
# Test joining other user's workspace by matching domain email
sh % "hg cloud join -u 'other@example.com' --config 'commitcloud.email_domain=example.com'" == r"""
commitcloud: this repository is now connected to the 'user/other/default' workspace for the 'server' repo
commitcloud: synchronizing 'server' with 'user/other/default'
commitcloud: commits synchronized
finished in * (glob)"""
sh % "hg cloud leave" == "commitcloud: this repository is now disconnected from Commit Cloud Sync"