use of org.eclipse.hono.service.management.credentials.PskCredential in project hono by eclipse.
the class DeviceRegistryHttpClient method addPskDeviceForTenant.
/**
* Creates a tenant and adds a device to it with a given Pre-Shared Key.
* <p>
* The device will be registered with a set of <em>psk</em> credentials using the device identifier as the
* authentication identifier and PSK identity.
*
* @param tenantId The identifier of the tenant to add the secret to.
* @param tenant The tenant payload as specified by the Tenant management API.
* @param deviceId The identifier of the device to add to the tenant.
* @param deviceData Additional data to register for the device.
* @param key The shared key.
* @return A future indicating the outcome of the operation.
* @throws NullPointerException if any of the parameters are are {@code null}.
*/
public Future<HttpResponse<Buffer>> addPskDeviceForTenant(final String tenantId, final Tenant tenant, final String deviceId, final Device deviceData, final String key) {
Objects.requireNonNull(tenant);
Objects.requireNonNull(deviceId);
Objects.requireNonNull(deviceData);
Objects.requireNonNull(key);
final PskCredential credential = IntegrationTestSupport.createPskCredentials(deviceId, key);
return addTenant(tenantId, tenant).compose(ok -> registerDevice(tenantId, deviceId, deviceData)).compose(ok -> addCredentials(tenantId, deviceId, Collections.singleton(credential)));
}
use of org.eclipse.hono.service.management.credentials.PskCredential in project hono by eclipse.
the class RegistryServiceTest method testGetDisabledCredentials.
@Test
void testGetDisabledCredentials(final VertxTestContext context) {
Future.succeededFuture().flatMap(x -> {
final var device = new Device();
return this.registrationManagement.createDevice(DEFAULT_TENANT, Optional.of("d1"), device, SPAN).onComplete(context.succeeding(result -> {
context.verify(() -> {
assertThat(result.getStatus()).isEqualTo(HttpURLConnection.HTTP_CREATED);
});
}));
}).flatMap(x -> {
final var credentials = new LinkedList<CommonCredential>();
final var psk = new PskCredential("a1", List.of(new PskSecret().setKey(new byte[] { 1, 2, 3, 4 })));
psk.setEnabled(false);
credentials.add(psk);
return this.credentialsManagement.updateCredentials(DEFAULT_TENANT, "d1", credentials, Optional.empty(), SPAN).onFailure(context::failNow);
}).flatMap(x -> {
return this.credentialsAdapter.get(DEFAULT_TENANT, CredentialsConstants.SECRETS_TYPE_PRESHARED_KEY, "d1").onComplete(context.succeeding(result -> {
context.verify(() -> {
assertThat(result.getStatus()).isEqualTo(HttpURLConnection.HTTP_NOT_FOUND);
});
}));
}).onComplete(context.succeedingThenComplete());
}
use of org.eclipse.hono.service.management.credentials.PskCredential in project hono by eclipse.
the class CredentialsManagementIT method testAddCredentialsSucceeds.
/**
* Verifies that a newly added device has an empty set of credentials and that the
* service successfully adds arbitrary types of credentials.
*
* @param context The vert.x test context.
*/
@Test
public void testAddCredentialsSucceeds(final VertxTestContext context) {
final PasswordCredential pwdCredential = IntegrationTestSupport.createPasswordCredential(authId, "thePassword");
pwdCredential.getExtensions().put("client-id", "MQTT-client-2384236854");
final PskCredential pskCredential = IntegrationTestSupport.createPskCredentials("psk-id", "psk-key");
final var x509Credential = X509CertificateCredential.fromSubjectDn("emailAddress=foo@bar.com, CN=foo, O=bar", List.of(new X509CertificateSecret()));
x509Credential.setComment("non-standard attribute type");
final List<CommonCredential> credentials = List.of(pwdCredential, pskCredential, x509Credential);
registry.getCredentials(tenantId, deviceId).compose(httpResponse -> {
context.verify(() -> {
assertResourceVersionHasChanged(resourceVersion, httpResponse.headers());
assertThat(httpResponse.bodyAsJsonArray()).isEmpty();
});
return registry.addCredentials(tenantId, deviceId, credentials);
}).compose(httpResponse -> {
context.verify(() -> assertResourceVersionHasChanged(resourceVersion, httpResponse.headers()));
return registry.getCredentials(tenantId, deviceId);
}).onComplete(context.succeeding(httpResponse -> {
context.verify(() -> {
final CommonCredential[] credsOnRecord = httpResponse.bodyAsJson(CommonCredential[].class);
assertThat(credsOnRecord).hasLength(3);
Arrays.stream(credsOnRecord).forEach(creds -> {
assertThat(creds.getExtensions().get("device-id")).isNull();
if (creds instanceof PasswordCredential) {
assertThat(creds.getExtensions().get("client-id")).isEqualTo("MQTT-client-2384236854");
} else if (creds instanceof X509CertificateCredential) {
assertThat(creds.getComment()).isEqualTo("non-standard attribute type");
}
creds.getSecrets().forEach(secret -> {
assertThat(secret.isEnabled()).isTrue();
assertThat(secret.getId()).isNotNull();
});
});
});
context.completeNow();
}));
}
Aggregations