blob: bf543ea2c1b34645ac7ee8818b728ea7269baa0f [file] [log] [blame]
/*
* Copyright 2017 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.plugins.signing
import org.gradle.integtests.fixtures.ToBeFixedForConfigurationCache
import org.gradle.plugins.signing.signatory.internal.gnupg.GnupgSignatoryProvider
import org.gradle.util.Requires
import spock.lang.Ignore
@Requires(adhoc = { GpgCmdFixture.getAvailableGpg() != null })
@Ignore('https://github.com/gradle/gradle-private/issues/3370')
class SigningConfigurationsWithGpgCmdIntegrationSpec extends SigningConfigurationsIntegrationSpec {
SignMethod getSignMethod() {
return SignMethod.GPG_CMD
}
@ToBeFixedForConfigurationCache
def "does not leak passphrase at info logging"() {
given:
buildFile << """
${keyInfo.addAsPropertiesScript()}
signing {
useGpgCmd()
sign(jar)
signatories = new ${GnupgSignatoryProvider.name}()
}
"""
setupGpgCmd()
when:
run "signJar", "-i"
then:
executedAndNotSkipped(":signJar")
assertDoesNotLeakPassphrase()
}
private void assertDoesNotLeakPassphrase() {
outputContains("--passphrase-fd 0")
result.assertNotOutput("--passphrase ")
}
}