/plugins/git4idea/test-stepdefs/git4idea/GitRemoteSteps.java

http://github.com/JetBrains/intellij-community · Java · 177 lines · 128 code · 31 blank · 18 comment · 3 complexity · e357320bbf3b04dad35102c7791344b3 MD5 · raw file

  1. /*
  2. * Copyright 2000-2013 JetBrains s.r.o.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package git4idea;
  17. import cucumber.api.java.en.Then;
  18. import cucumber.api.java.en.When;
  19. import git4idea.checkout.GitCheckoutProvider;
  20. import git4idea.commands.GitHttpAuthenticator;
  21. import org.jetbrains.annotations.NotNull;
  22. import java.io.File;
  23. import java.util.concurrent.CountDownLatch;
  24. import java.util.concurrent.TimeUnit;
  25. import static git4idea.GitCucumberWorld.*;
  26. import static org.junit.Assert.assertFalse;
  27. import static org.junit.Assert.assertTrue;
  28. /**
  29. * @author Kirill Likhodedov
  30. */
  31. public class GitRemoteSteps {
  32. private TestAuthenticator myAuthenticator;
  33. private CountDownLatch myCloneCompleted = new CountDownLatch(1);
  34. @When("I clone (\\S+)")
  35. public void I_clone_the_repository(final String url) {
  36. myAuthenticator = new TestAuthenticator();
  37. myHttpAuthService.register(myAuthenticator);
  38. executeOnPooledThread(new Runnable() {
  39. @Override
  40. public void run() {
  41. String projectName = url.substring(url.lastIndexOf('/') + 1).replace(".git", "");
  42. GitCheckoutProvider.doClone(myProject, myGit, projectName, myTestRoot, url);
  43. myCloneCompleted.countDown();
  44. }
  45. });
  46. }
  47. @Then("I should be asked for the password")
  48. public void I_should_be_asked_for_the_password() throws InterruptedException {
  49. myAuthenticator.waitUntilPasswordIsAsked();
  50. assertTrue("Password was not requested", myAuthenticator.wasPasswordAsked());
  51. }
  52. @Then("I should be asked for the username")
  53. public void I_should_be_asked_for_the_username() throws InterruptedException {
  54. myAuthenticator.waitUntilUsernameIsAsked();
  55. assertTrue("Password was not requested", myAuthenticator.wasUsernameAsked());
  56. }
  57. @When("I provide password '(\\S+)'")
  58. public void I_provide_password(String password) {
  59. myAuthenticator.supplyPassword(password);
  60. }
  61. @When("I provide username '(\\S+)'")
  62. public void I_provide_username(String username) {
  63. myAuthenticator.supplyUsername(username);
  64. }
  65. @Then("repository should (not )?be cloned to (\\S+)")
  66. public void the_repository_should_be_cloned(String negation, String dir) throws InterruptedException {
  67. assertTrue("Clone didn't complete during the reasonable period of time", myCloneCompleted.await(5, TimeUnit.SECONDS));
  68. if (negation == null) {
  69. assertTrue("Repository directory was not found", new File(myTestRoot, dir).exists());
  70. }
  71. else {
  72. assertFalse("Repository directory shouldn't exist", new File(myTestRoot, dir).exists());
  73. }
  74. }
  75. private static class TestAuthenticator implements GitHttpAuthenticator {
  76. private static final int TIMEOUT = 10;
  77. private final CountDownLatch myPasswordAskedWaiter = new CountDownLatch(1);
  78. private final CountDownLatch myUsernameAskedWaiter = new CountDownLatch(1);
  79. private final CountDownLatch myPasswordSuppliedWaiter = new CountDownLatch(1);
  80. private final CountDownLatch myUsernameSuppliedWaiter = new CountDownLatch(1);
  81. private volatile boolean myPasswordAsked;
  82. private volatile boolean myUsernameAsked;
  83. private volatile String myPassword;
  84. private volatile String myUsername;
  85. @NotNull
  86. @Override
  87. public String askPassword(@NotNull String url) {
  88. myPasswordAsked = true;
  89. myPasswordAskedWaiter.countDown();
  90. try {
  91. assertTrue("Password was not supplied during the reasonable period of time",
  92. myPasswordSuppliedWaiter.await(TIMEOUT, TimeUnit.SECONDS));
  93. }
  94. catch (InterruptedException e) {
  95. throw new RuntimeException(e);
  96. }
  97. return myPassword;
  98. }
  99. @NotNull
  100. @Override
  101. public String askUsername(@NotNull String url) {
  102. myUsernameAsked = true;
  103. myUsernameAskedWaiter.countDown();
  104. try {
  105. assertTrue("Password was not supplied during the reasonable period of time",
  106. myUsernameSuppliedWaiter.await(TIMEOUT, TimeUnit.SECONDS));
  107. }
  108. catch (InterruptedException e) {
  109. throw new RuntimeException(e);
  110. }
  111. return myUsername;
  112. }
  113. void supplyPassword(@NotNull String password) {
  114. myPassword = password;
  115. myPasswordSuppliedWaiter.countDown();
  116. }
  117. void supplyUsername(@NotNull String username) {
  118. myUsername = username;
  119. myUsernameSuppliedWaiter.countDown();
  120. }
  121. void waitUntilPasswordIsAsked() throws InterruptedException {
  122. assertTrue("Password was not asked during the reasonable period of time",
  123. myPasswordAskedWaiter.await(TIMEOUT, TimeUnit.SECONDS));
  124. }
  125. void waitUntilUsernameIsAsked() throws InterruptedException {
  126. assertTrue("Username was not asked during the reasonable period of time",
  127. myUsernameAskedWaiter.await(TIMEOUT, TimeUnit.SECONDS));
  128. }
  129. @Override
  130. public void saveAuthData() {
  131. }
  132. @Override
  133. public void forgetPassword() {
  134. }
  135. @Override
  136. public boolean wasCancelled() {
  137. return false;
  138. }
  139. boolean wasPasswordAsked() {
  140. return myPasswordAsked;
  141. }
  142. boolean wasUsernameAsked() {
  143. return myUsernameAsked;
  144. }
  145. }
  146. }