All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.gradle.test.fixtures.server.sftp.SftpResource.groovy Maven / Gradle / Ivy

There is a newer version: 8.11.1
Show newest version
/*
 * Copyright 2013 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.sftp

import org.apache.commons.io.FilenameUtils
import org.gradle.test.fixtures.file.TestFile
import org.gradle.test.fixtures.resource.RemoteResource
import org.gradle.util.internal.RelativePathUtil

class SftpResource implements RemoteResource {

    SFTPServer server
    TestFile file

    SftpResource(SFTPServer server, TestFile file) {
        this.server = server
        this.file = file
    }

    String getPath() {
        return getPathOnServer()
    }

    String getName() {
        return file.name
    }

    String getPathOnServer() {
        return "/${RelativePathUtil.relativePath(server.baseDir, file)}"
    }

    URI getUri() {
        return new URI("${server.uri}${pathOnServer}")
    }

    void expectLstat() {
        server.expectLstat(pathOnServer)
    }

    void expectLstatMissing() {
        server.expectLstatMissing(pathOnServer)
    }

    void expectStat() {
        server.expectStat(pathOnServer)
    }

    void expectOpen() {
        server.expectOpen(pathOnServer)
    }

    def allowWrite() {
        server.allowWrite(pathOnServer)
    }

    void expectClose() {
        server.expectClose(pathOnServer)
    }

    void expectFileDownload() {
        // TODO - should not do this stat request
        server.expectStat(pathOnServer)
        server.expectFileDownload(pathOnServer)
    }

    void expectFileUpload() {
        server.expectFileUpload(pathOnServer)
    }

    @Override
    void expectMetadataRetrieveBroken() {
        server.expectMetadataRetrieveBroken(pathOnServer)
    }

    @Override
    void expectMetadataRetrieveMissing() {
        server.expectLstatMissing(pathOnServer)
    }

    @Override
    void expectParentMkdir() {
        withEachDirectory { String path ->
            server.expectLstat(path)
            server.expectMkdir(path)
        }
    }

    @Override
    void expectParentCheckdir() {
        server.expectLstat(FilenameUtils.getFullPathNoEndSeparator(pathOnServer))
    }

    void withEachDirectory(Closure action) {
        def directory = FilenameUtils.getFullPathNoEndSeparator(pathOnServer)
        directory.tokenize('/').findAll().inject('') { path, token ->
            def currentPath = "$path/$token"
            action(currentPath)
            currentPath
        }
    }

    @Override
    void expectDownload() {
        expectMetadataRetrieve()
        expectFileDownload()
    }

    @Override
    void expectDownloadMissing() {
        expectMetadataRetrieveMissing()
    }

    @Override
    void expectMetadataRetrieve() {
        expectLstat()
    }

    @Override
    void expectDownloadBroken() {
        expectMetadataRetrieveBroken()
    }

    @Override
    void expectUpload() {
        expectFileUpload()
    }

    @Override
    void expectUploadBroken() {
        server.expectOpen(pathOnServer)
        server.expectWriteBroken(pathOnServer)
        // TODO - should be a CLOSE
        server.expectStat(pathOnServer)
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy