Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for newKeyRing (0.13 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureWriteIntegTest.groovy

            then:
            assertMetadataExists()
            hasModules(["org:bar", "org:foo"])
        }
    
        def "keys are exported properly when buildSrc is present"() {
            def keyring = newKeyRing()
            def keyring2 = newKeyRing()
            assert keyring.publicKey != keyring2.publicKey
            createMetadataFile {
                keyServer(keyServerFixture.uri)
            }
    
            given:
            javaLibrary()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 07:31:22 UTC 2024
    - 29.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/AbstractSignatureVerificationIntegrationTest.groovy

            keyServerFixture.missingKey(keyId)
        }
    
        protected void serveValidKey() {
            keyServerFixture.withDefaultSigningKey()
        }
    
        protected SimpleKeyRing newKeyRing(PGPPublicKey mustBeAfter = SigningFixtures.validPublicKey) {
            def ring = createKeyRing()
            def minId = new BigInteger(Fingerprint.of(mustBeAfter).toString(), 16)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 20 13:00:32 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/verification/DependencyVerificationSignatureCheckIntegTest.groovy

            where:
            stopInBetween << [false, true]
        }
    
        def "can verify classified artifacts downloaded in previous builds (stop in between = #stopInBetween)"() {
            def keyring = newKeyRing()
            keyServerFixture.registerPublicKey(keyring.publicKey)
            def pkId = Fingerprint.of(keyring.publicKey)
    
            given:
            terseConsoleOutput(false)
            javaLibrary()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 75.1K bytes
    - Viewed (0)
Back to top