Testing PostgreSQL External Payload Storage Controller in Conductor OSS
This test suite validates the external payload storage functionality in PostgreSQL for the Conductor OSS platform. It focuses on testing the REST controller responsible for retrieving stored payload data from PostgreSQL storage.
Test Coverage Overview
Implementation Analysis
Technical Details
Best Practices Demonstrated
conductor-oss/conductor
postgres-external-storage/src/test/java/com/netflix/conductor/postgres/controller/ExternalPostgresPayloadResourceTest.java
/*
* Copyright 2023 Conductor Authors.
* <p>
* 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
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* 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 com.netflix.conductor.postgres.controller;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import org.junit.Before;
import org.junit.Test;
import org.springframework.core.io.InputStreamResource;
import org.springframework.http.ResponseEntity;
import com.netflix.conductor.postgres.storage.PostgresPayloadStorage;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.mockito.ArgumentMatchers.anyString;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
public class ExternalPostgresPayloadResourceTest {
private PostgresPayloadStorage mockPayloadStorage;
private ExternalPostgresPayloadResource postgresResource;
@Before
public void before() {
this.mockPayloadStorage = mock(PostgresPayloadStorage.class);
this.postgresResource = new ExternalPostgresPayloadResource(this.mockPayloadStorage);
}
@Test
public void testGetExternalStorageData() throws IOException {
String data = "Dummy data";
InputStream inputStreamData =
new ByteArrayInputStream(data.getBytes(StandardCharsets.UTF_8));
when(mockPayloadStorage.download(anyString())).thenReturn(inputStreamData);
ResponseEntity<InputStreamResource> response =
postgresResource.getExternalStorageData("dummyKey.json");
assertNotNull(response.getBody());
assertEquals(
data,
new String(
response.getBody().getInputStream().readAllBytes(),
StandardCharsets.UTF_8));
}
}