
org.gradle.test.fixtures.server.http.MavenHttpModule.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2012 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.test.fixtures.server.http
import org.gradle.test.fixtures.HttpModule
import org.gradle.test.fixtures.file.TestFile
import org.gradle.test.fixtures.maven.DelegatingMavenModule
import org.gradle.test.fixtures.maven.MavenFileModule
import org.gradle.test.fixtures.maven.MavenModule
class MavenHttpModule extends DelegatingMavenModule implements MavenModule, HttpModule {
private final HttpServer server
private final String moduleRootPath
private final MavenFileModule backingModule
MavenHttpModule(HttpServer server, String repoRoot, MavenFileModule backingModule) {
super(backingModule)
this.backingModule = backingModule
this.server = server
this.moduleRootPath = "${repoRoot}/${backingModule.groupId.replace('.', '/')}/${backingModule.artifactId}"
}
protected String getModuleVersionPath() {
"${moduleRootPath}/${backingModule.version}"
}
HttpArtifact getArtifact(Map options = [:]) {
return new MavenHttpArtifact(server, "${moduleRootPath}/${backingModule.version}", backingModule, options)
}
/**
* Adds an additional artifact to this module.
* @param options Can specify any of: type or classifier
*/
HttpArtifact artifact(Map options = [:]) {
backingModule.artifact(options)
return new MavenHttpArtifact(server, "${moduleRootPath}/${backingModule.version}", backingModule, options)
}
MavenHttpModule withSourceAndJavadoc() {
artifact(classifier: "sources")
artifact(classifier: "javadoc")
return this
}
MavenHttpModule withNoMetaData() {
backingModule.withNoMetaData()
return this
}
PomHttpArtifact getPom() {
return new PomHttpArtifact(server, getModuleVersionPath(), backingModule)
}
MetaDataArtifact getRootMetaData() {
return new MetaDataArtifact(server, "$moduleRootPath", backingModule)
}
TestFile getRootMetaDataFile() {
return backingModule.rootMetaDataFile
}
MavenHttpModule allowAll() {
server.allowGetOrHead(moduleVersionPath, backingModule.moduleDir)
return this
}
void missing() {
server.allowGetOrHeadMissing(pomPath)
server.allowGetOrHeadMissing(metaDataPath)
server.allowGetOrHeadMissing(artifactPath)
}
HttpResource getMetaData() {
return new BasicHttpResource(server, metaDataFile, getMetaDataPath())
}
String getMetaDataPath() {
"$moduleVersionPath/$metaDataFile.name"
}
String getArtifactPath() {
"$moduleVersionPath/$artifactFile.name"
}
String getPomPath() {
"$moduleVersionPath/$pomFile.name"
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy