-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
799 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
86 changes: 86 additions & 0 deletions
86
.../bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/test/check/CheckIntegrationTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
/* | ||
* Copyright (c) 2024 Airbyte, Inc., all rights reserved. | ||
*/ | ||
|
||
package io.airbyte.cdk.test.check | ||
|
||
import io.airbyte.cdk.command.ConfigurationJsonObjectBase | ||
import io.airbyte.cdk.command.ValidatedJsonUtils | ||
import io.airbyte.cdk.test.util.FakeDataDumper | ||
import io.airbyte.cdk.test.util.IntegrationTest | ||
import io.airbyte.cdk.test.util.NoopDestinationCleaner | ||
import io.airbyte.cdk.test.util.NoopExpectedRecordMapper | ||
import io.airbyte.protocol.models.v0.AirbyteConnectionStatus | ||
import io.airbyte.protocol.models.v0.AirbyteMessage | ||
import java.nio.charset.StandardCharsets | ||
import java.nio.file.Files | ||
import java.nio.file.Path | ||
import java.util.regex.Pattern | ||
import kotlin.test.assertEquals | ||
import org.junit.jupiter.api.Assertions.assertTrue | ||
import org.junit.jupiter.api.Test | ||
import org.junit.jupiter.api.assertAll | ||
|
||
open class CheckIntegrationTest<T : ConfigurationJsonObjectBase>( | ||
val configurationClass: Class<T>, | ||
val successConfigFilenames: List<String>, | ||
val failConfigFilenamesAndFailureReasons: Map<String, Pattern>, | ||
) : | ||
IntegrationTest( | ||
FakeDataDumper, | ||
NoopDestinationCleaner, | ||
NoopExpectedRecordMapper, | ||
) { | ||
@Test | ||
open fun testSuccessConfigs() { | ||
for (path in successConfigFilenames) { | ||
val fileContents = Files.readString(Path.of("secrets", path), StandardCharsets.UTF_8) | ||
val config = ValidatedJsonUtils.parseOne(configurationClass, fileContents) | ||
val process = | ||
destinationProcessFactory.createDestinationProcess("check", config = config) | ||
process.run() | ||
val messages = process.readMessages() | ||
val checkMessages = messages.filter { it.type == AirbyteMessage.Type.CONNECTION_STATUS } | ||
|
||
assertEquals( | ||
checkMessages.size, | ||
1, | ||
"Expected to receive exactly one connection status message, but got ${checkMessages.size}: $checkMessages" | ||
) | ||
assertEquals( | ||
AirbyteConnectionStatus.Status.SUCCEEDED, | ||
checkMessages.first().connectionStatus.status | ||
) | ||
} | ||
} | ||
|
||
@Test | ||
open fun testFailConfigs() { | ||
for ((path, failurePattern) in failConfigFilenamesAndFailureReasons) { | ||
val fileContents = Files.readString(Path.of(path)) | ||
val config = ValidatedJsonUtils.parseOne(configurationClass, fileContents) | ||
val process = | ||
destinationProcessFactory.createDestinationProcess("check", config = config) | ||
process.run() | ||
val messages = process.readMessages() | ||
val checkMessages = messages.filter { it.type == AirbyteMessage.Type.CONNECTION_STATUS } | ||
|
||
assertEquals( | ||
checkMessages.size, | ||
1, | ||
"Expected to receive exactly one connection status message, but got ${checkMessages.size}: $checkMessages" | ||
) | ||
|
||
val connectionStatus = checkMessages.first().connectionStatus | ||
assertAll( | ||
{ assertEquals(AirbyteConnectionStatus.Status.FAILED, connectionStatus.status) }, | ||
{ | ||
assertTrue( | ||
failurePattern.matcher(connectionStatus.message).matches(), | ||
"Expected to match ${failurePattern.pattern()}, but got ${connectionStatus.message}" | ||
) | ||
} | ||
) | ||
} | ||
} | ||
} |
17 changes: 17 additions & 0 deletions
17
...cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/test/util/DestinationCleaner.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/* | ||
* Copyright (c) 2024 Airbyte, Inc., all rights reserved. | ||
*/ | ||
|
||
package io.airbyte.cdk.test.util | ||
|
||
fun interface DestinationCleaner { | ||
/** | ||
* Search the test destination for old test data and delete it. This should leave recent data | ||
* (e.g. from the last week) untouched, to avoid causing failures in actively-running tests. | ||
*/ | ||
fun cleanup() | ||
} | ||
|
||
object NoopDestinationCleaner : DestinationCleaner { | ||
override fun cleanup() {} | ||
} |
22 changes: 22 additions & 0 deletions
22
.../bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/test/util/DestinationDataDumper.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/* | ||
* Copyright (c) 2024 Airbyte, Inc., all rights reserved. | ||
*/ | ||
|
||
package io.airbyte.cdk.test.util | ||
|
||
fun interface DestinationDataDumper { | ||
fun dumpRecords( | ||
streamName: String, | ||
streamNamespace: String?, | ||
): List<OutputRecord> | ||
} | ||
|
||
/** | ||
* Some integration tests don't need to actually read records from the destination, and can use this | ||
* implementation to satisfy the compiler. | ||
*/ | ||
object FakeDataDumper : DestinationDataDumper { | ||
override fun dumpRecords(streamName: String, streamNamespace: String?): List<OutputRecord> { | ||
throw NotImplementedError() | ||
} | ||
} |
187 changes: 187 additions & 0 deletions
187
...cdk/bulk/core/load/src/testFixtures/kotlin/io/airbyte/cdk/test/util/DestinationProcess.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,187 @@ | ||
/* | ||
* Copyright (c) 2024 Airbyte, Inc., all rights reserved. | ||
*/ | ||
|
||
package io.airbyte.cdk.test.util | ||
|
||
import com.fasterxml.jackson.databind.JsonNode | ||
import io.airbyte.cdk.command.CliRunnable | ||
import io.airbyte.cdk.command.CliRunner | ||
import io.airbyte.cdk.command.ConfigurationJsonObjectBase | ||
import io.airbyte.protocol.models.Jsons | ||
import io.airbyte.protocol.models.v0.AirbyteMessage | ||
import io.airbyte.protocol.models.v0.ConfiguredAirbyteCatalog | ||
import io.github.oshai.kotlinlogging.KotlinLogging | ||
import java.io.ByteArrayOutputStream | ||
import java.io.InputStream | ||
import java.io.PipedInputStream | ||
import java.io.PipedOutputStream | ||
import java.io.PrintWriter | ||
import javax.inject.Singleton | ||
|
||
private val logger = KotlinLogging.logger {} | ||
|
||
/** | ||
* Represents a destination process, whether running in-JVM via micronaut, or as a separate Docker | ||
* container. The general lifecycle is: | ||
* 1. `val dest = DestinationProcessFactory.createDestinationProcess(...)` | ||
* 2. `launch { dest.run() }` | ||
* 3. [sendMessage] as many times as you want | ||
* 4. [readMessages] as needed (e.g. to check that state messages are emitted during the sync) | ||
* 5. [shutdown] once you have no more messages to send to the destination | ||
*/ | ||
interface DestinationProcess { | ||
/** | ||
* Run the destination process. Callers who want to interact with the destination should | ||
* `launch` this method. | ||
*/ | ||
fun run() | ||
|
||
fun sendMessage(message: AirbyteMessage) | ||
|
||
/** Return all messages the destination emitted since the last call to [readMessages]. */ | ||
fun readMessages(): List<AirbyteMessage> | ||
|
||
/** | ||
* Wait for the destination to terminate, then return all messages it emitted since the last | ||
* call to [readMessages]. | ||
*/ | ||
fun shutdown() | ||
} | ||
|
||
interface DestinationProcessFactory { | ||
fun createDestinationProcess( | ||
command: String, | ||
config: ConfigurationJsonObjectBase? = null, | ||
catalog: ConfiguredAirbyteCatalog? = null, | ||
): DestinationProcess | ||
} | ||
|
||
class NonDockerizedDestination( | ||
command: String, | ||
config: ConfigurationJsonObjectBase?, | ||
catalog: ConfiguredAirbyteCatalog?, | ||
) : DestinationProcess { | ||
private val destinationStdinPipe: PrintWriter | ||
private val destination: CliRunnable | ||
|
||
init { | ||
val destinationStdin = PipedInputStream() | ||
// This could probably be a channel, somehow. But given the current structure, | ||
// it's easier to just use the pipe stuff. | ||
destinationStdinPipe = PrintWriter(PipedOutputStream(destinationStdin)) | ||
destination = | ||
CliRunner.destination( | ||
command, | ||
config = config, | ||
catalog = catalog, | ||
inputStream = destinationStdin, | ||
) | ||
} | ||
|
||
override fun run() { | ||
destination.run() | ||
} | ||
|
||
override fun sendMessage(message: AirbyteMessage) { | ||
destinationStdinPipe.println(Jsons.serialize(message)) | ||
} | ||
|
||
override fun readMessages(): List<AirbyteMessage> = destination.results.newMessages() | ||
|
||
override fun shutdown() { | ||
destinationStdinPipe.close() | ||
} | ||
} | ||
|
||
// Notably, not actually a Micronaut factory. We want to inject the actual | ||
// factory into our tests, not a pre-instantiated destination, because we want | ||
// to run multiple destination processes per test. | ||
// TODO only inject this when not running in CI, a la @Requires(notEnv = "CI_master_merge") | ||
@Singleton | ||
class NonDockerizedDestinationFactory : DestinationProcessFactory { | ||
override fun createDestinationProcess( | ||
command: String, | ||
config: ConfigurationJsonObjectBase?, | ||
catalog: ConfiguredAirbyteCatalog? | ||
): DestinationProcess { | ||
return NonDockerizedDestination(command, config, catalog) | ||
} | ||
} | ||
|
||
// TODO define a factory for this class + @Require(env = CI_master_merge) | ||
class DockerizedDestination( | ||
command: String, | ||
config: JsonNode?, | ||
catalog: ConfiguredAirbyteCatalog?, | ||
) : DestinationProcess { | ||
override fun run() { | ||
TODO("launch a docker container") | ||
} | ||
|
||
override fun sendMessage(message: AirbyteMessage) { | ||
// push a message to the docker process' stdin | ||
TODO("Not yet implemented") | ||
} | ||
|
||
override fun readMessages(): List<AirbyteMessage> { | ||
// read everything from the process' stdout | ||
TODO("Not yet implemented") | ||
} | ||
|
||
override fun shutdown() { | ||
// close stdin, wait until process exits | ||
TODO("Not yet implemented") | ||
} | ||
} | ||
|
||
// This is currently unused, but we'll need it for the Docker version. | ||
// it exists right now b/c I wrote it prior to the CliRunner retooling. | ||
/** | ||
* There doesn't seem to be a built-in equivalent to this? Scanner and BufferedReader both have | ||
* `hasNextLine` methods which block until the stream has data to read, which we don't want to do. | ||
* | ||
* This class simply buffers the next line in-memory until it reaches a newline or EOF. | ||
*/ | ||
private class LazyInputStreamReader(private val input: InputStream) { | ||
private val buffer: ByteArrayOutputStream = ByteArrayOutputStream() | ||
private var eof = false | ||
|
||
/** | ||
* Returns the next line of data, or null if no line is available. Doesn't block if the | ||
* inputstream has no data. | ||
*/ | ||
fun nextLine(): MaybeLine { | ||
if (eof) { | ||
return NoLine.EOF | ||
} | ||
while (input.available() != 0) { | ||
when (val read = input.read()) { | ||
-1 -> { | ||
eof = true | ||
val line = Line(buffer.toByteArray().toString(Charsets.UTF_8)) | ||
buffer.reset() | ||
return line | ||
} | ||
'\n'.code -> { | ||
val bytes = buffer.toByteArray() | ||
buffer.reset() | ||
return Line(bytes.toString(Charsets.UTF_8)) | ||
} | ||
else -> { | ||
buffer.write(read) | ||
} | ||
} | ||
} | ||
return NoLine.NOT_YET_AVAILABLE | ||
} | ||
|
||
companion object { | ||
interface MaybeLine | ||
enum class NoLine : MaybeLine { | ||
EOF, | ||
NOT_YET_AVAILABLE | ||
} | ||
data class Line(val line: String) : MaybeLine | ||
} | ||
} |
Oops, something went wrong.