summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-05-18Add beaker tests for git basic authJohn Duarte
2014-05-18Fix exec test for cloneJohn Duarte
2014-05-18Fix exec test for compressionJohn Duarte
2014-05-18Fix exec test for shallow cloneJohn Duarte
2014-05-18Fix root path depth for negative shallow testsJohn Duarte
2014-05-18Add tests git using ssh scp syntaxJohn Duarte
2014-05-18Update expectations for shallow cloneJohn Duarte
2014-05-18Set neg bare test to expect bare repoJohn Duarte
2014-05-18Fix typos in verify steps for revision testsJohn Duarte
2014-05-18Move git tests into sub-directoryJohn Duarte
2014-05-18Add beaker tests for git checkout for userJohn Duarte
2014-05-18Add beaker tests for git checkout for specified tagJohn Duarte
2014-05-18Add beaker tests for git shallow cloneJohn Duarte
2014-05-18Add beaker tests for git checkout for specified revisionJohn Duarte
2014-05-18Add beaker tests for git checkout for groupJohn Duarte
2014-05-18Add beaker tests for git compression checkoutsJohn Duarte
2014-05-18Add beaker test for git branch checkoutJohn Duarte
2014-05-18Add beaker tests for git createJohn Duarte
2014-05-18Add beaker tests for git cloneJohn Duarte
2014-05-18Use on(host, '') rather than host.execute('') syntaxJohn Duarte
2014-05-18Change apply syntax to apply_manifest_onJohn Duarte
2014-05-18Add test for git clone using sshJohn Duarte
2014-05-18Add test for git clone using httpsJohn Duarte
2014-05-18Add test for git clone using httpJohn Duarte
2014-05-18Add managehome to testuserJohn Duarte
In order to make sure that the home directory for the test user is created and destroyed, add managehome to the setup and teardown manifests for the testuser.
2014-05-18Move git daemon setup/teardown into context blockJohn Duarte
In order to ensure that the git daemon is running for the proper test, the setup and teardown calls for git daemon hav been moved into the context block for testing the git protocol.
2014-05-18Add test for git clone using file pathJohn Duarte
2014-05-18Add test for clone using git protocolJohn Duarte
2014-05-18Add spec for clone protocols skeletonJohn Duarte
The git_clone_protocols_spec.rb will be used to enumerate over the available protocols for git to use to clone to disk. The initial skeleton includes the 'file://' protocol test as well as support key files to be used later.
2014-05-16Added multiline parsing tests for branch -aTravis Fields
2014-05-16Merge pull request #140 from cyberious/RakeTaskMorgan Haskel
Add rake tasks to test both beaker and beaker-rspec in one go
2014-05-16Add rake tasks to test both beaker and beaker-rspec in one goTravis Fields
2014-05-15Fix spec testsTravis Fields
2014-05-15update to use -a and desired for hard resetTravis Fields
2014-05-15Fix detached head stateTravis Fields
2014-05-13Merge pull request #138 from cyberious/FM-1284Ashley Penney
Fix issue where force=>true was not destroying repository then recreatin...
2014-05-13Fix issue where force=>true was not destroying repository then recreatingTravis Fields
2014-05-12Add test for ensure latest with branch specifiedJohn Duarte
2014-05-08Use on(host, '') rather than host.execute('') syntaxJohn Duarte
2014-05-08Change apply syntax to apply_manifest_onJohn Duarte
2014-05-07Add acceptance tests for git protocols using cloneJohn Duarte
The git_clone_protocols_spec.rb will be used to enumerate over the available protocols for git to use to clone to disk. Support key files are also included for https/ssl use. Protocols tested * file protocol (raw filepath) * file protocol (file://) * git protocol (git://) * http protocol (http://) * https protocol (https://) * ssh protocol (ssh://user@host) TODO: Currently, the ssl cert is not added to the CA on the host. This causes the git clone to fail because the cert is not trusted and the client does not proceed with a non-trusted ssl connection.
2014-04-03Merge pull request #120 from huandu/masterAshley Penney
Use `git rev-parse` to get tag canonical revision
2014-04-03Merge pull request #121 from fkrull/masterAshley Penney
Only add ssh options to commands that actually talk to the network.
2014-04-03Merge pull request #131 from igalic/fix-tabbingAshley Penney
fix tabbing in vcsrepo test
2014-04-03fix tabbing in vcsrepo testIgor Galić
2014-04-02Merge pull request #130 from Phil0xF7/add_beaker-rspec_testsHunter Haugen
add beaker-rspec support
2014-04-02add beaker-rspec supportPhil Pham
This adds support for beaker-rspec as well as basic test coverage for git
2014-03-31Merge pull request #108 from sodabrew/bzr_set_ownershipAaron Stone
Call set_ownership from the bzr provider
2014-03-06Call set_ownership from the bzr providerAaron Stone
2014-02-16Only add ssh options to commands that actually talk to the network.Felix Krull
At least in Mercurial 2.8.2, --ssh seems to be a command-specific parameter in contrast to a global one. As a result, local commands error when seeing a --ssh parameter. This change passes --ssh only for commands that actually talk to the network ('incoming', 'pull' and 'clone' here).