mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-12 08:25:44 +01:00
refactor
This commit is contained in:
@@ -25,6 +25,7 @@
|
||||
package sonia.scm.security.gpg;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
import com.google.common.collect.ImmutableSet;
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.junit.jupiter.api.extension.ExtendWith;
|
||||
import org.mockito.InjectMocks;
|
||||
@@ -34,8 +35,8 @@ import sonia.scm.security.PublicKey;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.time.Instant;
|
||||
import java.util.Collections;
|
||||
import java.util.Optional;
|
||||
import java.util.Set;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.mockito.Mockito.when;
|
||||
@@ -51,7 +52,7 @@ class DefaultGPGTest {
|
||||
|
||||
@Test
|
||||
void shouldFindIdInSignature() throws IOException {
|
||||
String raw = GPGTestHelper.readKey("signature.asc");
|
||||
String raw = GPGTestHelper.readResource("signature.asc");
|
||||
String publicKeyId = gpg.findPublicKeyId(raw.getBytes());
|
||||
|
||||
assertThat(publicKeyId).isEqualTo("0x1F17B79A09DAD5B9");
|
||||
@@ -59,8 +60,8 @@ class DefaultGPGTest {
|
||||
|
||||
@Test
|
||||
void shouldFindPublicKey() throws IOException {
|
||||
String raw = GPGTestHelper.readKey("subkeys.asc");
|
||||
RawGpgKey key1 = new RawGpgKey("42", "key_42", "trillian", raw, Instant.now());
|
||||
String raw = GPGTestHelper.readResource("subkeys.asc");
|
||||
RawGpgKey key1 = new RawGpgKey("42", "key_42", "trillian", raw, ImmutableSet.of("trillian", "zaphod"), Instant.now());
|
||||
|
||||
when(store.findById("42")).thenReturn(Optional.of(key1));
|
||||
|
||||
@@ -70,17 +71,16 @@ class DefaultGPGTest {
|
||||
assertThat(publicKey.get().getOwner()).isPresent();
|
||||
assertThat(publicKey.get().getOwner().get()).contains("trillian");
|
||||
assertThat(publicKey.get().getId()).isEqualTo("42");
|
||||
assertThat(publicKey.get().getContacts()).contains("Sebastian Sdorra <s.sdorra@gmail.com>",
|
||||
"Sebastian Sdorra <sebastian.sdorra@cloudogu.com>");
|
||||
assertThat(publicKey.get().getContacts()).contains("trillian", "zaphod");
|
||||
}
|
||||
|
||||
@Test
|
||||
void shouldFindKeysForUsername() throws IOException {
|
||||
String raw = GPGTestHelper.readKey("single.asc");
|
||||
String raw2= GPGTestHelper.readKey("subkeys.asc");
|
||||
String raw = GPGTestHelper.readResource("single.asc");
|
||||
String raw2= GPGTestHelper.readResource("subkeys.asc");
|
||||
|
||||
RawGpgKey key1 = new RawGpgKey("1", "1", "trillian", raw, Instant.now());
|
||||
RawGpgKey key2 = new RawGpgKey("2", "2", "trillian", raw2, Instant.now());
|
||||
RawGpgKey key1 = new RawGpgKey("1", "1", "trillian", raw, Collections.emptySet(), Instant.now());
|
||||
RawGpgKey key2 = new RawGpgKey("2", "2", "trillian", raw2, Collections.emptySet(), Instant.now());
|
||||
when(store.findByUsername("trillian")).thenReturn(ImmutableList.of(key1, key2));
|
||||
|
||||
Iterable<PublicKey> keys = gpg.findPublicKeysByUsername("trillian");
|
||||
|
||||
@@ -36,8 +36,8 @@ final class GPGTestHelper {
|
||||
}
|
||||
|
||||
@SuppressWarnings("UnstableApiUsage")
|
||||
static String readKey(String key) throws IOException {
|
||||
URL resource = Resources.getResource("sonia/scm/security/gpg/" + key);
|
||||
static String readResource(String fileName) throws IOException {
|
||||
URL resource = Resources.getResource("sonia/scm/security/gpg/" + fileName);
|
||||
return Resources.toString(resource, StandardCharsets.UTF_8);
|
||||
}
|
||||
|
||||
|
||||
@@ -27,6 +27,9 @@ package sonia.scm.security.gpg;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.Collections;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
class GpgKeyTest {
|
||||
|
||||
@@ -37,13 +40,14 @@ class GpgKeyTest {
|
||||
longContent.append(i);
|
||||
}
|
||||
|
||||
byte[] raw = GPGTestHelper.readKey("subkeys.asc").getBytes();
|
||||
String raw = GPGTestHelper.readResource("pubKeyEH.asc");
|
||||
String signature = GPGTestHelper.readResource("signature.asc");
|
||||
|
||||
GpgKey key = new GpgKey("1", "trillian", raw);
|
||||
GpgKey key = new GpgKey("1", "trillian", raw, Collections.emptySet());
|
||||
|
||||
boolean verified = key.verify(longContent.toString().getBytes(), raw);
|
||||
boolean verified = key.verify(longContent.toString().getBytes(), signature.getBytes());
|
||||
|
||||
// assertThat(verified).isTrue();
|
||||
//assertThat(verified).isTrue();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -38,21 +38,21 @@ import static org.junit.jupiter.api.Assertions.assertThrows;
|
||||
import static org.mockito.Mockito.lenient;
|
||||
import static org.mockito.Mockito.mock;
|
||||
import static org.mockito.Mockito.when;
|
||||
import static sonia.scm.security.gpg.GPGTestHelper.readKey;
|
||||
import static sonia.scm.security.gpg.GPGTestHelper.readResource;
|
||||
|
||||
@ExtendWith(MockitoExtension.class)
|
||||
class KeysTest {
|
||||
|
||||
@Test
|
||||
void shouldResolveSingleId() throws IOException {
|
||||
String rawPublicKey = readKey("single.asc");
|
||||
String rawPublicKey = readResource("single.asc");
|
||||
Keys keys = Keys.resolve(rawPublicKey);
|
||||
assertThat(keys.getMaster()).isEqualTo("0x975922F193B07D6E");
|
||||
}
|
||||
|
||||
@Test
|
||||
void shouldResolveIdsFromSubkeys() throws IOException {
|
||||
String rawPublicKey = readKey("subkeys.asc");
|
||||
String rawPublicKey = readResource("subkeys.asc");
|
||||
Keys keys = Keys.resolve(rawPublicKey);
|
||||
assertThat(keys.getMaster()).isEqualTo("0x13B13D4C8A9350A1");
|
||||
assertThat(keys.getSubs()).containsOnly("0x247E908C6FD35473", "0xE50E1DD8B90D3A6B", "0xBF49759E43DD0E60");
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
/*
|
||||
* MIT License
|
||||
*
|
||||
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
package sonia.scm.security.gpg;
|
||||
|
||||
import org.bouncycastle.openpgp.PGPPublicKey;
|
||||
import org.junit.jupiter.api.Test;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.Optional;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
|
||||
class PgpPublicKeyExtractorTest {
|
||||
|
||||
@Test
|
||||
void shouldExtractPublicKeyFromRawKey() throws IOException {
|
||||
String raw = GPGTestHelper.readResource("pubKeyEH.asc");
|
||||
|
||||
Optional<PGPPublicKey> publicKey = PgpPublicKeyExtractor.getFromRawKey(raw);
|
||||
|
||||
assertThat(publicKey).isPresent();
|
||||
assertThat(Long.toHexString(publicKey.get().getKeyID())).isEqualTo("39ad4bed55527f1c");
|
||||
}
|
||||
|
||||
}
|
||||
@@ -40,6 +40,7 @@ import sonia.scm.api.v2.resources.ScmPathInfoStore;
|
||||
import java.io.IOException;
|
||||
import java.net.URI;
|
||||
import java.time.Instant;
|
||||
import java.util.Collections;
|
||||
import java.util.List;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
@@ -103,8 +104,8 @@ class PublicKeyCollectionMapperTest {
|
||||
}
|
||||
|
||||
private RawGpgKey createPublicKey(String displayName) throws IOException {
|
||||
String raw = GPGTestHelper.readKey("single.asc");
|
||||
return new RawGpgKey(displayName, displayName, "trillian", raw, Instant.now());
|
||||
String raw = GPGTestHelper.readResource("single.asc");
|
||||
return new RawGpgKey(displayName, displayName, "trillian", raw, Collections.emptySet(), Instant.now());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -38,6 +38,7 @@ import sonia.scm.api.v2.resources.ScmPathInfoStore;
|
||||
import java.io.IOException;
|
||||
import java.net.URI;
|
||||
import java.time.Instant;
|
||||
import java.util.Collections;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.mockito.Mockito.when;
|
||||
@@ -68,8 +69,8 @@ class PublicKeyMapperTest {
|
||||
void shouldMapKeyToDto() throws IOException {
|
||||
when(subject.isPermitted("user:changePublicKeys:trillian")).thenReturn(true);
|
||||
|
||||
String raw = GPGTestHelper.readKey("single.asc");
|
||||
RawGpgKey key = new RawGpgKey("1", "key_42", "trillian", raw, Instant.now());
|
||||
String raw = GPGTestHelper.readResource("single.asc");
|
||||
RawGpgKey key = new RawGpgKey("1", "key_42", "trillian", raw, Collections.emptySet(), Instant.now());
|
||||
|
||||
RawGpgKeyDto dto = mapper.map(key);
|
||||
|
||||
@@ -82,8 +83,8 @@ class PublicKeyMapperTest {
|
||||
|
||||
@Test
|
||||
void shouldNotAppendDeleteLink() throws IOException {
|
||||
String raw = GPGTestHelper.readKey("single.asc");
|
||||
RawGpgKey key = new RawGpgKey("1", "key_42", "trillian", raw, Instant.now());
|
||||
String raw = GPGTestHelper.readResource("single.asc");
|
||||
RawGpgKey key = new RawGpgKey("1", "key_42", "trillian", raw, Collections.emptySet(), Instant.now());
|
||||
|
||||
RawGpgKeyDto dto = mapper.map(key);
|
||||
|
||||
|
||||
@@ -112,7 +112,7 @@ class PublicKeyResourceTest {
|
||||
|
||||
@Test
|
||||
void shouldAddToStore() throws URISyntaxException, IOException {
|
||||
String raw = GPGTestHelper.readKey("single.asc");
|
||||
String raw = GPGTestHelper.readResource("single.asc");
|
||||
|
||||
UriInfo uriInfo = mock(UriInfo.class);
|
||||
UriBuilder builder = mock(UriBuilder.class);
|
||||
|
||||
@@ -80,21 +80,21 @@ class PublicKeyStoreTest {
|
||||
@Test
|
||||
void shouldThrowAuthorizationExceptionOnAdd() throws IOException {
|
||||
doThrow(AuthorizationException.class).when(subject).checkPermission("user:changePublicKeys:zaphod");
|
||||
String rawKey = GPGTestHelper.readKey("single.asc");
|
||||
String rawKey = GPGTestHelper.readResource("single.asc");
|
||||
|
||||
assertThrows(AuthorizationException.class, () -> keyStore.add("zaphods key", "zaphod", rawKey));
|
||||
}
|
||||
|
||||
@Test
|
||||
void shouldOnlyStorePublicKeys() throws IOException {
|
||||
String rawKey = GPGTestHelper.readKey("single.asc").replace("PUBLIC", "PRIVATE");
|
||||
String rawKey = GPGTestHelper.readResource("single.asc").replace("PUBLIC", "PRIVATE");
|
||||
|
||||
assertThrows(NotPublicKeyException.class, () -> keyStore.add("SCM Package Key", "trillian", rawKey));
|
||||
}
|
||||
|
||||
@Test
|
||||
void shouldReturnStoredKey() throws IOException {
|
||||
String rawKey = GPGTestHelper.readKey("single.asc");
|
||||
String rawKey = GPGTestHelper.readResource("single.asc");
|
||||
Instant now = Instant.now();
|
||||
|
||||
RawGpgKey key = keyStore.add("SCM Package Key", "trillian", rawKey);
|
||||
@@ -107,7 +107,7 @@ class PublicKeyStoreTest {
|
||||
|
||||
@Test
|
||||
void shouldFindStoredKeyById() throws IOException {
|
||||
String rawKey = GPGTestHelper.readKey("single.asc");
|
||||
String rawKey = GPGTestHelper.readResource("single.asc");
|
||||
keyStore.add("SCM Package Key", "trillian", rawKey);
|
||||
Optional<RawGpgKey> key = keyStore.findById("0x975922F193B07D6E");
|
||||
assertThat(key).isPresent();
|
||||
@@ -115,7 +115,7 @@ class PublicKeyStoreTest {
|
||||
|
||||
@Test
|
||||
void shouldDeleteKey() throws IOException {
|
||||
String rawKey = GPGTestHelper.readKey("single.asc");
|
||||
String rawKey = GPGTestHelper.readResource("single.asc");
|
||||
keyStore.add("SCM Package Key", "trillian", rawKey);
|
||||
Optional<RawGpgKey> key = keyStore.findById("0x975922F193B07D6E");
|
||||
|
||||
@@ -139,10 +139,10 @@ class PublicKeyStoreTest {
|
||||
|
||||
@Test
|
||||
void shouldFindAllKeysForUser() throws IOException {
|
||||
String singleKey = GPGTestHelper.readKey("single.asc");
|
||||
String singleKey = GPGTestHelper.readResource("single.asc");
|
||||
keyStore.add("SCM Single Key", "trillian", singleKey);
|
||||
|
||||
String multiKey = GPGTestHelper.readKey("subkeys.asc");
|
||||
String multiKey = GPGTestHelper.readResource("subkeys.asc");
|
||||
keyStore.add("SCM Multi Key", "trillian", multiKey);
|
||||
|
||||
List<RawGpgKey> keys = keyStore.findByUsername("trillian");
|
||||
|
||||
Reference in New Issue
Block a user