/subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyHandlerTest.groovy

http://github.com/gradle/gradle · Groovy · 287 lines · 198 code · 74 blank · 15 comment · 16 complexity · b66293857d7c5624d7f928527b399714 MD5 · raw file

  1. /*
  2. * Copyright 2009 the original author or authors.
  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 org.gradle.api.internal.artifacts.dsl.dependencies
  17. import org.gradle.api.artifacts.*
  18. import org.gradle.api.artifacts.dsl.ComponentMetadataHandler
  19. import org.gradle.api.artifacts.dsl.ComponentModuleMetadataHandler
  20. import org.gradle.api.internal.artifacts.query.ArtifactResolutionQueryFactory
  21. import spock.lang.Specification
  22. class DefaultDependencyHandlerTest extends Specification {
  23. private static final String TEST_CONF_NAME = "someConf"
  24. private ConfigurationContainer configurationContainer = Mock()
  25. private DependencyFactory dependencyFactory = Mock()
  26. private Configuration configuration = Mock()
  27. private ProjectFinder projectFinder = Mock()
  28. private DependencySet dependencySet = Mock()
  29. private DefaultDependencyHandler dependencyHandler = new DefaultDependencyHandler(
  30. configurationContainer, dependencyFactory, projectFinder, Stub(ComponentMetadataHandler), Stub(ComponentModuleMetadataHandler), Stub(ArtifactResolutionQueryFactory))
  31. void setup() {
  32. _ * configurationContainer.findByName(TEST_CONF_NAME) >> configuration
  33. _ * configurationContainer.getAt(TEST_CONF_NAME) >> configuration
  34. _ * configuration.dependencies >> dependencySet
  35. }
  36. void "creates and adds a dependency from some notation"() {
  37. Dependency dependency = Mock()
  38. when:
  39. def result = dependencyHandler.add(TEST_CONF_NAME, "someNotation")
  40. then:
  41. result == dependency
  42. and:
  43. 1 * dependencyFactory.createDependency("someNotation") >> dependency
  44. 1 * dependencySet.add(dependency)
  45. }
  46. void "creates, configures and adds a dependency from some notation"() {
  47. ExternalDependency dependency = Mock()
  48. when:
  49. def result = dependencyHandler.add(TEST_CONF_NAME, "someNotation") {
  50. force = true
  51. }
  52. then:
  53. result == dependency
  54. and:
  55. 1 * dependencyFactory.createDependency("someNotation") >> dependency
  56. 1 * dependency.setForce(true)
  57. 1 * dependencySet.add(dependency)
  58. }
  59. void "creates a dependency from some notation"() {
  60. Dependency dependency = Mock()
  61. when:
  62. def result = dependencyHandler.create("someNotation")
  63. then:
  64. result == dependency
  65. and:
  66. 1 * dependencyFactory.createDependency("someNotation") >> dependency
  67. }
  68. void "creates and configures a dependency from some notation"() {
  69. ExternalDependency dependency = Mock()
  70. when:
  71. def result = dependencyHandler.create("someNotation") { force = true}
  72. then:
  73. result == dependency
  74. and:
  75. 1 * dependencyFactory.createDependency("someNotation") >> dependency
  76. 1 * dependency.setForce(true)
  77. }
  78. void "can use dynamic method to add dependency"() {
  79. Dependency dependency = Mock()
  80. when:
  81. def result = dependencyHandler.someConf("someNotation")
  82. then:
  83. result == dependency
  84. and:
  85. 1 * dependencyFactory.createDependency("someNotation") >> dependency
  86. 1 * dependencySet.add(dependency)
  87. }
  88. void "can use dynamic method to add and configure dependency"() {
  89. ExternalDependency dependency = Mock()
  90. when:
  91. def result = dependencyHandler.someConf("someNotation") { force = true }
  92. then:
  93. result == dependency
  94. and:
  95. 1 * dependencyFactory.createDependency("someNotation") >> dependency
  96. 1 * dependencySet.add(dependency)
  97. 1 * dependency.setForce(true)
  98. }
  99. void "can use dynamic method to add multiple dependencies"() {
  100. Dependency dependency1 = Mock()
  101. Dependency dependency2 = Mock()
  102. when:
  103. def result = dependencyHandler.someConf("someNotation", "someOther")
  104. then:
  105. result == null
  106. and:
  107. 1 * dependencyFactory.createDependency("someNotation") >> dependency1
  108. 1 * dependencyFactory.createDependency("someOther") >> dependency2
  109. 1 * dependencySet.add(dependency1)
  110. 1 * dependencySet.add(dependency2)
  111. }
  112. void "can use dynamic method to add multiple dependencies from nested lists"() {
  113. Dependency dependency1 = Mock()
  114. Dependency dependency2 = Mock()
  115. when:
  116. def result = dependencyHandler.someConf([["someNotation"], ["someOther"]])
  117. then:
  118. result == null
  119. and:
  120. 1 * dependencyFactory.createDependency("someNotation") >> dependency1
  121. 1 * dependencyFactory.createDependency("someOther") >> dependency2
  122. 1 * dependencySet.add(dependency1)
  123. 1 * dependencySet.add(dependency2)
  124. }
  125. void "creates a project dependency from map"() {
  126. ProjectDependency projectDependency = Mock()
  127. when:
  128. def result = dependencyHandler.project([:])
  129. then:
  130. result == projectDependency
  131. and:
  132. 1 * dependencyFactory.createProjectDependencyFromMap(projectFinder, [:]) >> projectDependency
  133. }
  134. void "attaches configuration from same project to target configuration"() {
  135. Configuration other = Mock()
  136. given:
  137. configurationContainer.contains(other) >> true
  138. when:
  139. def result = dependencyHandler.add(TEST_CONF_NAME, other)
  140. then:
  141. result == null
  142. and:
  143. 1 * configuration.extendsFrom(other)
  144. }
  145. void "cannot create project dependency for configuration from different project"() {
  146. Configuration other = Mock()
  147. given:
  148. configurationContainer.contains(other) >> false
  149. when:
  150. dependencyHandler.add(TEST_CONF_NAME, other)
  151. then:
  152. UnsupportedOperationException e = thrown()
  153. e.message == 'Currently you can only declare dependencies on configurations from the same project.'
  154. }
  155. void "creates client module dependency"() {
  156. ClientModule clientModule = Mock()
  157. when:
  158. def result = dependencyHandler.module("someNotation")
  159. then:
  160. result == clientModule
  161. and:
  162. 1 * dependencyFactory.createModule("someNotation", null) >> clientModule
  163. }
  164. void "creates and configures client module dependency"() {
  165. ClientModule clientModule = Mock()
  166. Closure cl = {}
  167. when:
  168. def result = dependencyHandler.module("someNotation", cl)
  169. then:
  170. result == clientModule
  171. and:
  172. 1 * dependencyFactory.createModule("someNotation", cl) >> clientModule
  173. }
  174. void "creates gradle api dependency"() {
  175. Dependency dependency = Mock()
  176. when:
  177. def result = dependencyHandler.gradleApi()
  178. then:
  179. result == dependency
  180. and:
  181. 1 * dependencyFactory.createDependency(DependencyFactory.ClassPathNotation.GRADLE_API) >> dependency
  182. }
  183. void "creates Gradle test-kit dependency"() {
  184. Dependency dependency = Mock()
  185. when:
  186. def result = dependencyHandler.gradleTestKit()
  187. then:
  188. result == dependency
  189. and:
  190. 1 * dependencyFactory.createDependency(DependencyFactory.ClassPathNotation.GRADLE_TEST_KIT) >> dependency
  191. }
  192. void "creates local groovy dependency"() {
  193. Dependency dependency = Mock()
  194. when:
  195. def result = dependencyHandler.localGroovy()
  196. then:
  197. result == dependency
  198. and:
  199. 1 * dependencyFactory.createDependency(DependencyFactory.ClassPathNotation.LOCAL_GROOVY) >> dependency
  200. }
  201. void "cannot add dependency to unknown configuration"() {
  202. when:
  203. dependencyHandler.unknown("someNotation")
  204. then:
  205. thrown(MissingMethodException)
  206. }
  207. void "reasonable error when supplying null as a dependency notation"() {
  208. when:
  209. dependencyHandler."$TEST_CONF_NAME"(null)
  210. then:
  211. 1 * dependencyFactory.createDependency(null)
  212. }
  213. }