411 Commits

Author SHA1 Message Date
Julien Danjou
b88055350a Fix encoding header
The encoding header is semi-invalid has the encoding name should be
"utf-8" and not "utf8", which is not the official name of the encoding
and is not recognized by all tools.

Change-Id: I4db673fe86f643f5e1b3e5135d8b0cb72407253e
2014-12-08 11:54:59 +01:00
Jeremy Stanley
b1982d95ca Workflow documentation is now in infra-manual
Replace URLs for workflow documentation to appropriate parts of the
OpenStack Project Infrastructure Manual.

Change-Id: If393085cacf4d2fa21ae6c49ffa6290e02659588
2014-12-05 03:30:42 +00:00
Michael Pratt
c894704cb7 Update tests to use Gerrit 2.9.2
Gerrit 2.9 adds the '--all-reviewers' option to 'gerrit query', which
allows testing that reviewers have been successfully added to a patch
set in tests for new reviewer functionality.

Change-Id: I17f37c8fd46578b4a8cbfacee4eb8073972b2eee
2014-12-04 14:37:27 -05:00
Darragh Bailey
e2bd0f5f3c Use 'no_proxy' env variable in addition to uppercase
Need to override both variations of the no_proxy environment variable
since some tools do not check for the other if one is already defined.

While 'no_proxy' appears to be now the most common convention, it is
safer to set both lower and upper case to the same value when running
unit tests.

Change-Id: I536b6f2711ac70e0a2a45676098fb461ab3b8d33
2014-12-03 14:38:31 +00:00
Darragh Bailey
7f69ada396 Enable color support based on tty and config
Use the git config command and provided options to have git detect
whether color support should be enabled or disabled. Additionally ensure
that git-review color support can be controlled separately via the
option 'color.review', while still falling back to 'color.ui' if the app
specific option is not defined.

This will ensure that when piping or redirecting the output that colour
output will be disabled unless color.review, or it's fallback color.ui,
is set to always.

Also by utilizing 'git config', the any config options specified on the
command line that change behaviour will be adhered to. e.g.

  git -c color.review=never review -l

Will always output without color enabled.

Change-Id: I8f83ed8623da88e87972109af956331704e15d38
Closes-Bug: #1097961
2014-11-26 20:35:09 +00:00
JC Delay
c87ff1a8e1 get_remote_url(): honor any "url.<base>.insteadOf" config setting
git-review retrieved the remote URL based on the output of git-config.
However, contrary to the previous implementation based on
git-remote-show, git-config does not expand the URL of the given remote
taking into account any "url.<base>.insteadOf" config setting.

This change adds the necessary circuitry to expand URLs.
It also adds a regression test.

Change-Id: I826251aaf85d1b1e8bb2b4562e4b65025a7091b9
Closes-Bug: #1348634
2014-11-26 14:32:45 +01:00
Jenkins
045068e976 Merge "Prefer git-config over git-review config files" 2014-11-25 20:44:18 +00:00
Jenkins
042333fd44 Merge "Switched documentation to point to storyboard" 2014-11-18 20:52:13 +00:00
Jenkins
4f8d44153c Merge "Fix ---list and "departement" typos in man page" 2014-11-18 20:52:04 +00:00
K Jonathan Harker
4e40ede085 Convert add_remote to use GitReviewExceptions
By using the GitReviewException class and subclasses, the raised exceptions
will be caught in main() and properly handled. One Exception can be
converted to a CommandFailed exception, and the other is simple enough
to not need a subclass of GitReviewException.

Change-Id: Idb02d43fd480ab67493c757fb95431602239a55f
2014-11-17 12:25:21 -08:00
Cedric Brandily
1bc87f26d6 Prefer git-config over git-review config files
git-review gets its configuration from multiple sources (by priority):

 * command line options
 * git-config
  * options: username, rebase
  * with local/global/system config
 * git-review config files
  * options: scheme, host, port, project, defaultbranch/remote/rebase
  * locally using .gitreview
  * globally using ~/.config/gitreview/git-review.conf
  * system using /etc/git-review/git-review.conf

.gitreview file is commonly provided versioned in the git repo, where
other git-review config files and git-config is done by developers. It
implies for developers multiple places to define local/global/system
configuration options but some can only be changed by updating
.gitreview (scheme/port...) which is under versioning.

This change proposes to use as configuration sources (by priority):

 * command line options
 * git-config for developer local/global/system config
  * options: username, rebase and all .gitreview options
 * .gitreview local file for repo provided specific config

and deprecates git-review global/system files in order to reduce
configuration sources and allow to overload .gitreview configuration
without updating it.

Change-Id: I24aba0fa089de57d51a79049d9c192f76d576f69
2014-11-17 20:36:37 +01:00
Cedric Brandily
abe76bfe28 Isolate tests from user/system config
git-review behavior depends on git local, global and system configs.
tests have the same dependencies against them but only manage git local
config which implies the config expected by tests could not be the real
one because of git global and system configs.

The same trouble concerns gitreview global and system config files.

This change allows to run git-review in local mode (only using git and
gitreview local config files) by defining the environment variable
"GITREVIEW_LOCAL_MODE". This mode is used by tests to isolate them from
git and gitreview global and system configs. Mocking can not be used as
functional tests call not git-review code but git-review system command.

Change-Id: I598a284aec9e55f9618ab026c55ef0435e370d69
Closes-Bug: #1393192
2014-11-17 17:44:33 +01:00
Michael Krotscheck
26ed00a28c Switched documentation to point to storyboard
We've migrated this project to storyboard, I'm updating the
documentation links.

Change-Id: I175c5622e4d272407169bfaa85a410bb231074b7
2014-11-13 09:09:50 -08:00
Jenkins
e31646b3f2 Merge "Define -T/--no-topic to disable review submit with topic" 2014-10-13 19:36:03 +00:00
Jenkins
b5c52cddec Merge "-F/--force-rebase has no effect if rebase is disabled by config" 2014-10-13 14:04:39 +00:00
Jenkins
4e373e4752 Merge "Align git-review and python -m git_review.cmd behaviors" 2014-10-13 13:59:05 +00:00
Eric Harney
96de9ae7a1 Fix ---list and "departement" typos in man page
Change-Id: I4cc255e96a6ec66c27b5eabac386bf741efa5de4
2014-10-09 10:22:59 -04:00
Cedric Brandily
856ccd958b Align git-review and python -m git_review.cmd behaviors
Currently, python -m git_review.cmd wraps git_review.cmd.main call to
handle correctly unicode in python2 where git-review calls directly
git_review.cmd.main. This change embeds the wrapper inside main in
order to align git-review and python -m git_review.cmd behaviors.

Change-Id: I390e2d68b851299c3b07292b89dee8198068e6aa
2014-09-04 14:24:59 +02:00
Cedric Brandily
9f389bfec6 Define -T/--no-topic to disable review submit with topic
The option -T/--no-topic disables review with topic (mutually
exclusive with -t/--topic).

It allows to submit:

* a change without your current branch name as topic,
* a change update without updating current topic.

Change-Id: I06309b14246cb455d55c6833ab6adb932995edfa
2014-09-03 21:28:12 +02:00
Jeremy Stanley
213f99515c Work toward Python 3.4 support and testing
Change-Id: Ie5b0ac8763a0d137e0aa99b05102d2aa76f60034
2014-09-03 19:00:09 +00:00
Cedric Brandily
18f34f0cbc -F/--force-rebase has no effect if rebase is disabled by config
--force-rebase has no effect if rebase is disabled through git-config
or git-review config files.

This change ensures -F/--force-rebase "wins" over rebase disabled and
-F/--force-rebase becomes mutually exclusive with -R/--no-rebase.

Change-Id: Idd985a6a7a5b1cffa9bed996bb1ea5907e7d0844
2014-09-03 19:55:05 +02:00
Cedric Brandily
9b9c47f0a2 Remove useless constants
Change-Id: I380dc0ebce2af0636a9bab5901aa9abdae4eb320
2014-08-16 13:13:42 +02:00
Jenkins
499a2f3dbc Merge "Improve windows support for git-review --setup" 2014-08-05 13:17:47 +00:00
julien.marinfrisonroche
8f50043a24 Improve windows support for git-review --setup
If git-review is not run in git repo top-level dir, then the target
path used for scp uses both "/" and "\", and scp fails.

Change-Id: I8ffe163f9e29423b1c19bd54241a526a9843561f
Closes-Bug: #1024073
2014-07-30 17:56:39 +02:00
Jenkins
549d54afe1 Merge "Fix groff warnings with manpage" 2014-07-29 18:56:15 +00:00
Jenkins
0a91b0baee Merge "Avoid a stacktrace when no reviews are pending" 2014-07-29 18:50:48 +00:00
Jenkins
5688e715a5 Merge "Enabled hacking checks H305 and H307" 2014-07-29 18:46:35 +00:00
Jenkins
6a9d172604 Merge "Prevent long subjects in reviews causing spurious blank lines" 2014-07-25 11:36:37 +00:00
Darragh Bailey
648182a410 Fix groff warnings with manpage
Previous addition of backslashes '\' to escape hypens '-' also escaped
options to the mdoc formatting commands by accident.

Change-Id: I327ccb8a84fb199362e6a5dd7c5f5bff3d5b2bb4
2014-07-18 21:46:46 +01:00
Christian Berendt
d3b91e326e Enabled hacking checks H305 and H307
* H305  imports not grouped correctly
* H307  like imports should be grouped together

Change-Id: Ia4b376a90fed830ceea4b91caa920ff38263df5e
2014-07-17 09:38:36 +02:00
Darragh Bailey
aa3d861126 Prevent long subjects in reviews causing spurious blank lines
If the last field of the review being listed exceeds the width of the
console, then using whitespace padding will result in sufficient spacing
being added to all other line that will appear as spurious blank lines
if they were otherwise less than the console width.

Instead of:

 1234  master  <subject>

 5678  master  <really-long-subject-that-
 wraps-to-next-line>

Display:

 1234  master  <subject>
 5678  master  <really-long-subject-that-
 wraps-to-next-line>

Change-Id: I290f652f803cf3938a1bdb72c20c85969dbb3319
2014-07-13 01:35:41 +01:00
david
7d20ec0006 added link to get-pip to readme
Change-Id: I47add25bcb4db647b61303ba3578ba2c41f6b98d
2014-07-11 02:07:35 -07:00
Cedric Brandily
ada3d9102a Disable ssh/scp password authentication during tests
Ensure ssh/scp does not try password auth if key auth failed during tests

Change-Id: I1f35d81199bfa21a2ec8bcafff259242e0422b9b
2014-07-10 18:22:56 +00:00
Jenkins
0947d510cd Merge "Build universal wheels" 2014-07-10 05:17:11 +00:00
Jenkins
787430daf9 Merge "Update tests to use Gerrit 2.8.6.1" 2014-07-10 00:55:39 +00:00
Jeremy Stanley
dcb31b5762 Update tests to use Gerrit 2.8.6.1
Gerrit 2.8.6.1 bundles an updated mina-sshd which solves the
1-in-256 SSH hash mismatch bug, so should make our tests much more
stable.

Change-Id: Ic607660af8feb5c2dc4d1fca2681265eefdc7e93
2014-07-08 14:39:38 +00:00
Jeremy Stanley
8a7a25e50f Build universal wheels
Since git-review is tested and works with both Python 2.x and 3.x
interpreters, we want to build py2.py3-none-any wheels rather than
just py2-none-any. Without this change the wheels created are only
retrieved by pip running under a Python 2.x interpreter, while
Python 3.x environments retrieve the tarball instead.

Change-Id: I4d0cd28095b9c0273c11f2a1a4b152ba3b2dca33
2014-07-03 20:07:09 +00:00
Jeremy Stanley
28104e4ecd Update homepage on PyPI
The homepage entry displayed on PyPI is sort of useless if it points
to itself. Instead use OpenStack's cgit site for it.

Change-Id: I8a82418234058716b55cd5e23d114ba30d3ac212
2014-07-03 14:55:10 +00:00
Jeremy Stanley
59e7414d2a Update requirements to OpenStack's recommendations
This synchronizes requirements.txt, test-requirements.txt and
setup.py with the current state of the openstack/requirements
global-requirements.txt list. Also adds flake8 exclusions to tox.ini
for new hacking rules with which git-review does not yet comply.

Change-Id: I837ba57134bea16dd46c3f512bccd51cb39f76c8
2014-07-03 14:54:14 +00:00
Jeremy Stanley
640f9ef58d Update the README to mention dependencies
Change-Id: Ie6b1859ab5bcd8172f7e875c41263dedbf1e25f5
2014-07-03 14:34:22 +00:00
Jenkins
27c07577d6 Merge "Ensure username is set for all tests" 2014-07-02 20:45:56 +00:00
Antoine Musso
7aca8e69ce Avoid a stacktrace when no reviews are pending
Simply skip the whole function when the remote has no reviews and print
out a friendly user message.

Change-Id: I4c07f05d4b797af056ee08016b150088f3b182db
2014-06-27 17:56:03 +02:00
Darragh Bailey
d57b0611c6 Ensure username is set for all tests
Keep username/password defining and setting within the same module to
ensure any changes are kept in sync. Additionally remove the '--add'
option as git-review only supports one value for gitreview.username so
it should not be treated as a multi value config option.

Change-Id: I9ae64d8d1884e13a442da6f4d28407ca103e7b00
2014-06-27 10:28:37 +01:00
Darragh Bailey
c162732aa7 Provide nicer user message for missing remote ref
If the remote branch being targetted does not exist, any attempted
rebase will fail with an error that is largely unhelpful for users.

Assuming the preceding fetch succeeded properly, the most common reason
for the remote reference to not exist, is that the user wants the
changes to go to a new branch rather than the default. In this case
provide the user with a more helpful message indicating that if this is
the intention, to run git-review with the option to disable the rebase
in order to get the desired outcome of gerrit creating the branch
desired for the new reviews.

Change-Id: I4c92e901950abf2c879d00660daae3ccce7ddfc8
2014-06-18 19:11:16 +01:00
Jenkins
dfdeaa6a6b Merge "Ignore newline in bp/bug search in commit message" 2014-06-10 16:33:48 +00:00
Roger Luethi
59bd134558 Fix a typo in HACKING.rst
Change-Id: If09dc66fcea5e6978643ad1a9b31c42fa9444154
2014-06-10 12:14:20 +02:00
Jenkins
cd32379171 Merge "Restrict tests SSH auth to only the provided key" 2014-06-10 08:12:44 +00:00
Jenkins
9420a25a3f Merge "Keep track of gerrit.war and golden_site versions" 2014-06-10 07:23:22 +00:00
Yuriy Taraday
fc93ee9f32 Ignore newline in bp/bug search in commit message
If commit message ends with "blueprint" or "bug" and Change-Id line
follows, git-review would set topic to "Change-Id". So I fixed the bug

Change-Id: Id1aadef6de622b57e475d698ab9a9f98c3428651
2014-06-10 08:53:36 +04:00
Darragh Bailey
1f8d5f5ac5 Restrict tests SSH auth to only the provided key
Tests will fail if users have a number of SSH identities in use
locally. Should prevent all but the created key from being offered
to the remote.

Change-Id: I13c915418af0740592a6328e3af330c38cdb0729
2014-05-30 20:10:27 +01:00