411 Commits

Author SHA1 Message Date
Darragh Bailey
a8617c0a75 Disable proxies for tests that clone over http
Cloning via http in tests will break if the user has proxy settings
enabled that don't explicitly exclude the IP address range being used by
the local gerrit instances spun up to test against.

Change-Id: Ic33b72198a85a063d1818f4b318cde2f57e1b1be
2014-05-30 19:47:55 +01:00
Yuriy Taraday
ab9a65a3dd Keep track of gerrit.war and golden_site versions
Also add some log during tests preparation.
This patch will redownload gerrit.war unless you rename it:

    mv .gerrit/gerrit.war .gerrit/gerrit-2.8.5.war

Change-Id: I0f0a6cf7cfb70778d47a0fcbf1f09c5d292cd425
2014-05-30 21:14:50 +04:00
Jenkins
5cedac5b30 Merge "Fix typo in manpage s/gireview/gitreview/" 2014-05-28 20:16:29 +00:00
Daniel P. Berrange
8562d56e80 Fix typo in manpage s/gireview/gitreview/
The name of the config section for the 'rebase' property was
incorrectly spelt in the man page.

Change-Id: I496f4b556bbd3be93283d99d02d7b17feb1a8d85
2014-05-28 11:05:20 +01:00
Cedric Brandily
dbdb65a556 Correct git review -l over http(s)
Previously git review -l over http(s) returned open changes for all
projects.

Change-Id: Id8feb199286f9bb838d28f624768726977c07bae
2014-05-26 19:43:27 +02:00
Jenkins
cb87cd1dd8 Merge "Allow to specify default scheme in .gitreview file" 2014-05-22 20:58:05 +00:00
Jenkins
af50581629 Merge "Topic: do not use '(detached' when detached" 2014-05-22 20:17:22 +00:00
Jenkins
2925a9a5b1 Merge "Use gerrit 2.8.5 instead of gerrit 2.6.1 in tests" 2014-05-22 16:12:34 +00:00
Matthieu Baerts
eb7fd1e3e2 Topic: do not use '(detached' when detached
If we launch 'git branch' when we are detached from HEAD and if the
locale is set to English (LANG=C), we will have:

    * (detached from head)
      master
      (...)

Then the topic will be '(detached': not so pretty and incorrect
according to Yuriy Taraday;

Also, it's maybe better to use a copy of 'os.environ' to only add
environment variables for this single command and not for all next
commands which will be launched in this processus.

PS: added a new test to check if this new feature works correctly
PS2: 'git checkout --detach' has been introduced in git 1.7.5. It's
     maybe better to use 'git checkout BRANCH^0' instead.
PS3: handle the case where $LANG is not defined and correctly add this
     environment variable

Change-Id: I8bc74c5ed28de08038e07cfd37efbaf1c4f4e78f
2014-05-22 01:05:33 +02:00
Jenkins
a092a9829b Merge "Remove parsing of --help and variants from our code" 2014-05-21 20:50:00 +00:00
Jenkins
26ef165624 Merge ""git review --setup" failed in Chinese locale" 2014-05-21 19:34:44 +00:00
Jenkins
76a6720621 Merge "Python2: fixed UnicodeEncodeError" 2014-05-21 17:59:21 +00:00
Cedric Brandily
8de3a292bb Use gerrit 2.8.5 instead of gerrit 2.6.1 in tests
Note: this change modifies .gerrit content (used by tests), so delete
.gerrit folder and run "python -m git_review.tests.prepare".

Change-Id: Ia12d7148e3127ed5e10da449f1f4eebe633262bd
2014-05-16 11:39:21 -04:00
Cedric Brandily
d6df9e8e64 Allow to specify default scheme in .gitreview file
Change-Id: I9c85c6da05eec53b92e46fa9b2a04814aabed04d
2014-05-14 11:22:03 -04:00
Jenkins
1f63ae0c25 Merge "Skip invalid unicode in commit messages" 2014-05-14 05:18:52 +00:00
Cedric Brandily
f484176563 Correct test_remote to support branchs without upstream
Change-Id: I6a78a2acc30813fe900155403bfb1dff0bfe0573
2014-04-30 16:57:10 +02:00
Yuriy Taraday
4df9f3eb97 Remove parsing of --help and variants from our code
--help was being parsed specially to allow it to work out of Git tree.
This change shifts responsibility for that back to argparse module.
It also allows --version to run outside Git tree.

Change-Id: I88b7572d3dfc6a61d82bad55b2b3b5ecec908784
2014-04-25 14:52:05 +04:00
Matthieu Baerts
dc71ef7553 Python2: fixed UnicodeEncodeError
git-review crashes when using it with Python 2 (the default one in
Ubuntu 14.04): https://bugs.launchpad.net/git-review/+bug/1308050

It seems that in the main() method, 'cmd' can contain utf-8 chars:
git-review find '(détachée' (french word for 'detached') as topic.
This utf-8 string has caused a crash.
I guess we should always have an utf-8 string from a git command
but because I'm not so sure about that and I let you review this :-)

As advised by Clark Boylan, it can be interesting to encode the string
in run_command_status() method.
It's just needed to 'encode' it when we have an unicode string (python
2). shlex.split needs a 'str', not an 'unicode' type with utf-8 chars,
not a 'bytes' type and not not a 'bytes' type converted to 'str' (with
Python 3):

>>> shlex.split(str("echo héhé".encode('utf-8')))
['becho h\\xc3\\xa9h\\xc3\\xa9']

PS: Fixed error when launching tests with Python 2.6
PS2: Used 'sys.version_info' instead of 'sys.version'
     (thanks to Alex Gaynor)

Change-Id: Ie5bed46e562d3f9f2df54abe8b0fd6e849583df7
2014-04-24 01:42:19 +02:00
Antoine Musso
b551b8302d Skip invalid unicode in commit messages
When detecting color support, git-review attempts to decode to unicode
the git log output.  Whenever a commit message has invalid unicode, an
exception is thrown:

  File "git_review/cmd.py", line 366, in check_color_support
    (status, output) = run_command_status(test_command)
  File "git_review/cmd.py", line 130, in run_command_status
    out = out.decode('utf-8')
  File "python/2.7.6/encodings/utf_8.py", line 16, in decode
    return codecs.utf_8_decode(input, errors, True)
  UnicodeDecodeError: 'utf8' codec can't decode byte 0xa0 in position
  197283: invalid start byte

Happens with https://github.com/composer/composer/commit/737fe32f4db
which contains \xA0.  Simply ask unicode decoder to replace the invalid
bytes with U+FFFD REPLACEMENT CHARACTER.

Change-Id: I041d1a9aab6fe00ad807407747c6263d577fba17
2014-04-18 17:04:49 +02:00
Jenkins
aab7dcae88 Merge "Git review assumes the wrong ssh default port" 2014-03-31 20:58:48 +00:00
Jenkins
3cd81cc4d6 Merge "Add http(s) protocol support to fetch_review and list_reviews" 2014-03-29 20:10:43 +00:00
Jenkins
f862ac1ee8 Merge "git-review.1 manpage fix for groff warnings" 2014-03-29 18:49:44 +00:00
Cedric Brandily
69ca309ef6 Git review assumes the wrong ssh default port
Git review should not provide a default port when no port is defined
in the ssh remote url and delegates the choice to ssh config file (
git behavior).

Change-Id: I933a5715863d052c4760f26d6827f5296d426483
Closes-Bug: #1075751
2014-03-28 01:15:32 +01:00
Cedric Brandily
c8930f36ae Add http(s) protocol support to fetch_review and list_reviews
It allows to use git review -d/-m/-x/-N/-X over http(s) and allows
to enable/disable ssl certificate check using http.sslVerify git
option or GIT_SSL_NO_VERIFY environment variable.

Note: it requires REST API support on gerrit side.

Change-Id: Ic0bd846607c62c5403a3393dcbccbcec432bd51d
Closes-Bug: #1290268
2014-03-28 00:40:30 +01:00
Thomas Goirand
22dd46612d git-review.1 manpage fix for groff warnings
The current manual page contains hyphens where a minus sign
was intended. By default, "-" chars are interpreted as
hyphens (U+2010) by groff, not as minus signs (U+002D).
Since options to programs use minus signs (U+002D), this
means for example in UTF-8 locales that you cannot cut and
paste options, nor search for them easily.

This patch fixes this by escaping hyphens with backslashes.

Change-Id: I66e8041366ced24dac2ac21bbcf49de67a63c75b
2014-03-21 16:10:32 +08:00
Alexander Jones
0f013bffd1 Fix parsing of SCP-style URLs, as these are valid in Git itself
Closes-Bug: #1279016
Change-Id: I9b0133e75d7cd3e08f1384cce3e8be4a86343865
2014-03-17 13:12:36 +00:00
Jenkins
206f4e5411 Merge "Add http(s) protocol support to set_hooks_commit_msg" 2014-03-08 21:13:01 +00:00
Jenkins
daf3b14ca4 Merge "Add http(s) protocol support to test_remote" 2014-03-08 20:45:03 +00:00
Pete Zaitcev
b784b6965e "git review --setup" failed in Chinese locale
If a subcommand's output includes a non-ASCII character, the following
occurs:

[nova]$ LANG=zh_CN.UTF-8 LC_ALL=zh_CN.UTF-8 git review --setup
Traceback (most recent call last):
  File "/usr/bin/git-review", line 1187, in <module>
    print(e)
UnicodeEncodeError: 'ascii' codec can't encode characters in position 180-183: ordinal not in range(128)

Python3 works, because we force-encode everyting in run_command_status.

Change-Id: Ic4f4b0df57068c356a670901e02bf00c33985e2c
2014-03-07 22:36:57 -07:00
Jenkins
a222b13617 Merge "Verify if every attached file exists. Attach gerrig.config" 2014-03-05 22:18:12 +00:00
Jenkins
2eb693c1fd Merge "Wrap exceptions that occur while running external process" 2014-03-05 22:10:34 +00:00
Jenkins
e902129b69 Merge "Fix the regex for setting topic" 2014-02-23 23:11:43 +00:00
Yuriy Taraday
7b59a43498 Bump hacking version in requirements
hacking now works fine with Apache header used in git_review/cmd.py

Change-Id: I5fd88f19560f004aa69d6f85ec343d444717e167
2014-02-21 15:54:55 +04:00
Jenkins
38f030cfe9 Merge "Retrieve remote pushurl independently of user's locale" 2014-02-19 20:20:48 +00:00
Clark Boylan
a4a7f3c491 Reduce testr concurrnecy to 2.
Hard set testr concurrency to 2 so that fewer gerrit instances are
started in parallel compared to the default testr concurrency setting.
This will help avoid contention for memory and process resources when
running the tests.

Change-Id: Id3837500ce243af8d8ef762c6dcf50146876f406
2014-02-14 13:13:54 -08:00
Cedric Brandily
89cbc902bb Add http(s) protocol support to set_hooks_commit_msg
set_hooks_commit_msg used scp to download commit_msg hook even for
gerrit http(s) remote url. It will use scp for ssh remote url and
http(s) download for http(s) remote url (more proxy "friendly").

Note: this change modifies .gerrit/golden_site folder content (used
by tests), so delete .gerrit folder and run
 "python -m git_review.tests.prepare".

Closes-bug: #1274876
Change-Id: I49bcf4fd84a88878f9381ddf1a8714b778688a0a
2014-02-13 23:48:06 +01:00
Tim Landscheidt
cc28fb6969 Retrieve remote pushurl independently of user's locale
git-review tried to parse the output of "git remote show -n" to
retrieve a remote's pushurl and failed if the user's locale was not
English.  This change reads the configuration directly instead.

Change-Id: Idbf98ae00538dd611277ca862da969f22cbe6265
Closes-Bug: #1177429
2014-02-13 20:42:45 +01:00
Cedric Brandily
7da9835ba5 Add http(s) protocol support to test_remote
Change-Id: I517b68dd9b949033bad9d422d55b9037409793b2
2014-02-13 14:44:22 +00:00
Yuriy Taraday
cc876daf6f Verify if every attached file exists. Attach gerrig.config
Change-Id: I6d585df6f0789edec705c5f8cada44e68199b50a
2014-02-13 13:46:44 +04:00
Yuriy Taraday
d3e2986fa1 Wrap exceptions that occur while running external process
This should help identify problem with timeouts.

Change-Id: I663b1ca3fe9a74ed0869fefdb16583951e3db6a5
2014-02-13 13:46:44 +04:00
Yuriy Taraday
9a7f8ad613 Make Gerrit port and dir selection deterministic
For every test number N run in process with PID, we take address
127.N.PID/256.PID%256 and let Gerrit listen on its default ports (29418
for SSH and 8080 for HTTP) on that address. We also name site dir with
the same address with "site-" prefix.

Thanks to Clark Boylan for this great idea.

Change-Id: I95b010e7a5b96c981614d5d3401efe861534806f
2014-02-13 11:46:13 +04:00
Jenkins
76a0d43b14 Merge "Add 2m timeout to tests" 2014-02-13 07:43:22 +00:00
Yuriy Taraday
023c33a0c4 Don't try to attach known_hosts if it's not there
Fixes long tracebacks if something strange and wrong happens in the
gate.

Change-Id: I094a153e300a1a5652166e9976b4296b8d377f04
2014-02-12 14:07:58 +04:00
Jenkins
336a0d3f4e Merge "Remove tox locale overrides" 2014-02-12 05:47:05 +00:00
Jeremy Stanley
8fd1a948c3 Remove tox locale overrides
* tox.ini: The LANG, LANGUAGE and LC_ALL environment overrides were
introduced originally during the testr migration in an attempt to be
conservative about the possibility that locale settings in the
calling environment could cause consistency problems for test runs.
In actuality, this should be unnecessary and any place where it does
cause issues ought to be considered an actual bug. Also, having
these in the configuration actively causes older pip to have
problems with non-ASCII content in some package metadata files under
Python 3, so drop it now.

Change-Id: I8747a52141321549c56214710b70c5838aacc84e
Closes-Bug: #1277495
2014-02-10 03:02:11 +00:00
Morgan Fainberg
887e37943d Fix the regex for setting topic
The regex did not support the use of a `:` and a `#` in the bug
identification line. The updated regex now will support bug
identification lines that look like `Closes-Bug: #12345`.

Co-Authored-By: Nicolas Simonds <nic@metacloud.com>
Change-Id: Ie5edd9a04fe714302f06b2df2c4c134a2ef2316a
2014-02-06 13:20:17 -08:00
Yuriy Taraday
7b43070c6f Add 2m timeout to tests
If some test hangs by some reason, we get 1h delay in the gate until
Jenkins kills the job. This will shorten the delay to ~15min tops.

Change-Id: I8c6533aecd8b72b6c904c8e1724a0b27ff943d5b
2014-02-05 14:17:39 +04:00
Yuriy Taraday
2dc29b7c01 Attach Gerrit logs and known_hosts to failed tests
This should help with debugging strange problems that might occur with
tests.

Change-Id: I6bdb0402be101ba1789feb3dde186d6a4077a781
2014-02-03 13:54:56 +04:00
Cedric Brandily
242d80b125 Change test gerrit ssh/http ports offset
The offset between test gerrit ssh/http ports was the same as the
offset between test gerrit sites (1000): 1st test gerrit site http
port was the same as 2nd test gerrit site ssh port

Change-Id: I9c9ca05cd2a966773d72aeb210cc88a35daa9b62
2014-02-02 16:24:17 +01:00
Steve Kowalik
86d4f43ec4 Correct .Fl typo WRT --compare in the manual page
.Fl includes a dash for free when listing command line options, so
replace a typo of ---compare with --compare in the manual page.

Change-Id: Icaa6d87e954ebba75d534ed96f3632d80077f762
2014-01-12 15:40:06 +08:00