-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
1 parent
5bf61fd
commit 4fbbf58
Showing
3 changed files
with
48 additions
and
0 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
4 changes: 4 additions & 0 deletions
4
airbyte-cdk/bulk/core/base/src/main/resources/application.yaml
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,4 @@ | ||
airbyte: | ||
file-transfer: | ||
enabled: ${USE_FILE_TRANSFER:false} | ||
staging-path: ${AIRBYTE_STAGING_DIRECTORY:/staging/files} |
40 changes: 40 additions & 0 deletions
40
...e-cdk/bulk/core/base/src/test/kotlin/io/airbyte/cdk/initialization/TestApplicationYaml.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,40 @@ | ||
/* | ||
* Copyright (c) 2024 Airbyte, Inc., all rights reserved. | ||
*/ | ||
|
||
package io.airbyte.cdk.initialization | ||
|
||
import io.micronaut.context.annotation.Bean | ||
import io.micronaut.context.annotation.Factory | ||
import io.micronaut.context.annotation.Value | ||
import io.micronaut.test.extensions.junit5.annotation.MicronautTest | ||
import jakarta.inject.Inject | ||
import kotlin.test.assertEquals | ||
import org.junit.jupiter.api.Test | ||
|
||
@MicronautTest | ||
class TestApplicationYaml { | ||
@Inject lateinit var defaultValueBean: DefaultValueBean | ||
|
||
@Test | ||
fun testMainDefaultValue() { | ||
assertEquals("/staging/files", defaultValueBean.stagingFolder) | ||
assertEquals(false, defaultValueBean.fileTransferEnable) | ||
} | ||
} | ||
|
||
data class DefaultValueBean( | ||
val stagingFolder: String, | ||
val fileTransferEnable: Boolean, | ||
) | ||
|
||
@Factory | ||
class TestFactory { | ||
@Bean | ||
fun defaultValueBean( | ||
@Value("\${airbyte.file-transfer.staging-path}") stagingFolder: String, | ||
@Value("\${airbyte.file-transfer.enabled}") fileTransferEnable: Boolean, | ||
): DefaultValueBean { | ||
return DefaultValueBean(stagingFolder, fileTransferEnable) | ||
} | ||
} |