org.gradle.internal.resource.transfer.ProgressLoggingExternalResourceUploaderTest.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.internal.resource.transfer
import org.gradle.internal.resource.local.LocalResource
import org.gradle.internal.logging.progress.ProgressLogger
import org.gradle.internal.logging.progress.ProgressLoggerFactory
import spock.lang.Specification
class ProgressLoggingExternalResourceUploaderTest extends Specification {
def uploader = Mock(ExternalResourceUploader)
def progressLoggerFactory = Mock(ProgressLoggerFactory);
def progressLoggerUploader = new ProgressLoggingExternalResourceUploader(uploader, progressLoggerFactory)
def progressLogger = Mock(ProgressLogger)
def inputStream = Mock(InputStream)
def delegateResource = Mock(LocalResource)
def "delegates upload to delegate uploader and logs progress"() {
setup:
startsProgress()
when:
progressLoggerUploader.upload(localResource(), new URI("http://a/remote/path"))
then:
1 * delegateResource.open() >> inputStream
1 * uploader.upload(_, new URI("http://a/remote/path")) >> {resource, destination ->
def stream = resource.open();
assert stream.read(new byte[1024]) == 1024
assert stream.read() == 48
}
1 * inputStream.read(_, 0, 1024) >> 1024
1 * inputStream.read() >> 48
1 * progressLogger.progress(_)
1 * progressLogger.completed()
}
private LocalResource localResource() {
return new LocalResource() {
@Override
InputStream open() {
return delegateResource.open()
}
@Override
long getContentLength() {
return delegateResource.contentLength
}
}
}
def startsProgress() {
1 * progressLoggerFactory.newOperation(ProgressLoggingExternalResourceUploader.class) >> progressLogger;
1 * progressLogger.setDescription("Upload http://a/remote/path")
1 * progressLogger.setLoggingHeader("Upload http://a/remote/path")
1 * progressLogger.started()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy