org.octopusden.octopus.infrastructure.common.test.TestClient.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of test-client-commons Show documentation
Show all versions of test-client-commons Show documentation
Octopus module: test-client-commons
package org.octopusden.octopus.infrastructure.common.test
import java.io.File
import org.octopusden.octopus.infrastructure.common.test.dto.ChangeSet
import org.octopusden.octopus.infrastructure.common.test.dto.NewChangeSet
interface TestClient {
fun commit(newChangeSet: NewChangeSet, parent: String? = null): ChangeSet
fun tag(vcsUrl: String, commitId: String, tag: String)
fun exportRepository(vcsUrl: String, zip: File)
fun importRepository(vcsUrl: String, zip: File)
fun getCommits(vcsUrl: String, branch: String): List
fun clearData()
}