aboutsummaryrefslogtreecommitdiffstats
path: root/vespa-athenz/src/test/java/com/yahoo/vespa/athenz/identityprovider/client/IdentityDocumentSignerTest.java
blob: 46d8976b1cedeac195d92c4a1c198b5d921e306e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.athenz.identityprovider.client;

import com.yahoo.security.KeyAlgorithm;
import com.yahoo.security.KeyUtils;
import com.yahoo.vespa.athenz.api.AthenzIdentity;
import com.yahoo.vespa.athenz.api.AthenzService;
import com.yahoo.vespa.athenz.identityprovider.api.ClusterType;
import com.yahoo.vespa.athenz.identityprovider.api.DefaultSignedIdentityDocument;
import com.yahoo.vespa.athenz.identityprovider.api.EntityBindingsMapper;
import com.yahoo.vespa.athenz.identityprovider.api.IdentityDocument;
import com.yahoo.vespa.athenz.identityprovider.api.IdentityType;
import com.yahoo.vespa.athenz.identityprovider.api.LegacySignedIdentityDocument;
import com.yahoo.vespa.athenz.identityprovider.api.SignedIdentityDocument;
import com.yahoo.vespa.athenz.identityprovider.api.VespaUniqueInstanceId;
import org.junit.jupiter.api.Test;

import java.net.URI;
import java.security.KeyPair;
import java.time.Instant;
import java.util.Arrays;
import java.util.HashSet;

import static com.yahoo.vespa.athenz.identityprovider.api.IdentityType.TENANT;
import static com.yahoo.vespa.athenz.identityprovider.api.SignedIdentityDocument.DEFAULT_DOCUMENT_VERSION;
import static com.yahoo.vespa.athenz.identityprovider.api.SignedIdentityDocument.LEGACY_DEFAULT_DOCUMENT_VERSION;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertTrue;

/**
 * @author bjorncs
 */
public class IdentityDocumentSignerTest {
    public static final int KEY_VERSION = 0;

    private static final IdentityType identityType = TENANT;
    private static final VespaUniqueInstanceId id =
            new VespaUniqueInstanceId(1, "cluster-id", "instance", "application", "tenant", "region", "environment", identityType);
    private static final AthenzService providerService = new AthenzService("vespa", "service");
    private static final KeyPair keyPair = KeyUtils.generateKeypair(KeyAlgorithm.RSA);
    private static final String configserverHostname = "configserverhostname";
    private static final String instanceHostname = "instancehostname";
    private static final Instant createdAt = Instant.EPOCH;
    private static final HashSet<String> ipAddresses = new HashSet<>(Arrays.asList("1.2.3.4", "::1"));
    private static final ClusterType clusterType = ClusterType.CONTAINER;
    private static final URI ztsUrl = URI.create("https://foo");
    private static final AthenzIdentity serviceIdentity = new AthenzService("vespa", "node");

    @Test
    void legacy_generates_and_validates_signature() {
        IdentityDocumentSigner signer = new IdentityDocumentSigner();
        IdentityDocument identityDocument = new IdentityDocument(
                id, providerService, configserverHostname,
                instanceHostname, createdAt, ipAddresses, identityType, clusterType, ztsUrl, serviceIdentity);
        String signature =
                signer.generateLegacySignature(identityDocument, keyPair.getPrivate());

        SignedIdentityDocument signedIdentityDocument = new LegacySignedIdentityDocument(
                signature, KEY_VERSION, LEGACY_DEFAULT_DOCUMENT_VERSION, identityDocument);

        assertTrue(signer.hasValidSignature(signedIdentityDocument, keyPair.getPublic()));
    }

    @Test
    void generates_and_validates_signature() {
        IdentityDocumentSigner signer = new IdentityDocumentSigner();
        IdentityDocument identityDocument = new IdentityDocument(
                id, providerService, configserverHostname,
                instanceHostname, createdAt, ipAddresses, identityType, clusterType, ztsUrl, serviceIdentity);
        String data = EntityBindingsMapper.toIdentityDocumentData(identityDocument);
        String signature =
        signer.generateSignature(data, keyPair.getPrivate());

        SignedIdentityDocument signedIdentityDocument = new DefaultSignedIdentityDocument(
                signature, KEY_VERSION, DEFAULT_DOCUMENT_VERSION, data);

        assertTrue(signer.hasValidSignature(signedIdentityDocument, keyPair.getPublic()));
    }

    @Test
    void legacy_ignores_cluster_type_and_zts_url() {
        IdentityDocumentSigner signer = new IdentityDocumentSigner();
        IdentityDocument identityDocument = new IdentityDocument(
                id, providerService, configserverHostname,
                instanceHostname, createdAt, ipAddresses, identityType, clusterType, ztsUrl, serviceIdentity);
        IdentityDocument withoutIgnoredFields = new IdentityDocument(
                id, providerService, configserverHostname,
                instanceHostname, createdAt, ipAddresses, identityType, null, null, serviceIdentity);

        String signature =
                signer.generateLegacySignature(identityDocument, keyPair.getPrivate());

        var docWithoutIgnoredFields = new LegacySignedIdentityDocument(
                signature, KEY_VERSION, LEGACY_DEFAULT_DOCUMENT_VERSION, withoutIgnoredFields);
        var docWithIgnoredFields = new LegacySignedIdentityDocument(
                signature, KEY_VERSION, LEGACY_DEFAULT_DOCUMENT_VERSION, identityDocument);

        assertTrue(signer.hasValidSignature(docWithoutIgnoredFields, keyPair.getPublic()));
        assertEquals(docWithIgnoredFields.signature(), docWithoutIgnoredFields.signature());
    }

    @Test
    void validates_signature_for_new_and_old_versions() {
        IdentityDocumentSigner signer = new IdentityDocumentSigner();
        IdentityDocument identityDocument = new IdentityDocument(
                id, providerService, configserverHostname,
                instanceHostname, createdAt, ipAddresses, identityType, clusterType, ztsUrl, serviceIdentity);
        String signature =
                signer.generateLegacySignature(identityDocument, keyPair.getPrivate());

        SignedIdentityDocument signedIdentityDocument = new LegacySignedIdentityDocument(
                signature, KEY_VERSION, LEGACY_DEFAULT_DOCUMENT_VERSION, identityDocument);

        assertTrue(signer.hasValidSignature(signedIdentityDocument, keyPair.getPublic()));
    }
}