-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from psuzn/develop
develop -> main
- Loading branch information
Showing
9 changed files
with
152 additions
and
81 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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 @@ | ||
* @psuzn |
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,70 @@ | ||
name: play-deals-backend 1.0 CD | ||
on: | ||
push: | ||
tags: | ||
- '*' | ||
jobs: | ||
build_image: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
|
||
- name: Validate Gradle wrapper | ||
uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3 | ||
|
||
- name: Build Project with Gradle | ||
uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 | ||
with: | ||
arguments: build | ||
|
||
- uses: extractions/setup-just@v1 | ||
|
||
- name: Build and publish image with jib | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
run: just build-push-image | ||
env: | ||
DOCKER_USER: ${{ github.actor }} | ||
DOCKER_PASSWORD: ${{ github.token }} | ||
|
||
deploy_on_k8: | ||
runs-on: ubuntu-latest | ||
needs: build_image | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: extractions/setup-just@v1 | ||
|
||
- uses: azure/setup-helm@v3 | ||
|
||
- uses: azure/setup-kubectl@v3 | ||
id: install | ||
name: Setup kubectl client | ||
|
||
- name: create KUBECONFIG | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
run: | | ||
echo ${{ secrets.KUBE_CONFIG }} | base64 --decode > kube-config; | ||
chmod 600 kube-config; | ||
echo "KUBECONFIG=$(pwd)/kube-config" >> "$GITHUB_ENV" | ||
- name: Deploy on k8 | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
run: | | ||
kubectl config current-context; | ||
just helm-upgrade; | ||
env: | ||
DB_HOST: ${{ secrets.DB_HOST }} | ||
DB_USERNAME: ${{ secrets.DB_USERNAME }} | ||
DB_PASSWORD: ${{ secrets.DB_PASSWORD }} | ||
DB_PORT: ${{ secrets.DB_PORT }} | ||
DB_NAME: ${{ secrets.DB_NAME }} | ||
DASHBOARD: ${{ secrets.DASHBOARD }} | ||
DASHBOARD_USER: ${{ secrets.DASHBOARD_USER }} | ||
DASHBOARD_PASS: ${{ secrets.DASHBOARD_PASS }} | ||
|
||
|
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 |
---|---|---|
@@ -1,64 +1,30 @@ | ||
name: play-deals-backend 1.0 CI | ||
|
||
name: play-deals-backend 1.1 CI | ||
on: | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
checks: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Set up JDK 17 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: gradle | ||
|
||
- name: Validate Gradle wrapper | ||
uses: gradle/wrapper-validation-action@ccb4328a959376b642e027874838f60f8e596de3 | ||
uses: gradle/wrapper-validation-action@v1.1.0 | ||
|
||
- name: Build Project with Gradle | ||
uses: gradle/gradle-build-action@749f47bda3e44aa060e82d7b3ef7e40d953bd629 | ||
with: | ||
arguments: build | ||
|
||
- uses: extractions/setup-just@v1 | ||
|
||
- name: Build and publish image with jib | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
run: just build-push-image | ||
env: | ||
DOCKER_USER: ${{ github.actor }} | ||
DOCKER_PASSWORD: ${{ github.token }} | ||
|
||
- uses: azure/setup-helm@v3 | ||
- uses: azure/setup-kubectl@v3 | ||
id: install | ||
name: Setup kubectl client | ||
|
||
- name: create KUBECONFIG | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
run: | | ||
echo ${{ secrets.KUBE_CONFIG }} | base64 --decode > kube-config; | ||
chmod 600 kube-config; | ||
echo "KUBECONFIG=$(pwd)/kube-config" >> "$GITHUB_ENV" | ||
- name: Deploy on k8 | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
run: | | ||
kubectl config current-context; | ||
just helm-upgrade; | ||
env: | ||
DB_HOST: ${{ secrets.DB_HOST }} | ||
DB_USERNAME: ${{ secrets.DB_USERNAME }} | ||
DB_PASSWORD: ${{ secrets.DB_PASSWORD }} | ||
DB_PORT: ${{ secrets.DB_PORT }} | ||
DB_NAME: ${{ secrets.DB_NAME }} | ||
DASHBOARD: ${{ secrets.DASHBOARD }} | ||
DASHBOARD_USER: ${{ secrets.DASHBOARD_USER }} | ||
DASHBOARD_PASS: ${{ secrets.DASHBOARD_PASS }} | ||
|
||
|
||
|
||
|
6 changes: 0 additions & 6 deletions
6
backend/src/main/kotlin/me/sujanpoudel/playdeals/domain/entities/KeyValueEntity.kt
This file was deleted.
Oops, something went wrong.
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
13 changes: 2 additions & 11 deletions
13
backend/src/main/kotlin/me/sujanpoudel/playdeals/repositories/KeyValuesRepository.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 |
---|---|---|
@@ -1,18 +1,9 @@ | ||
package me.sujanpoudel.playdeals.repositories | ||
|
||
import me.sujanpoudel.playdeals.domain.entities.KeyValueEntity | ||
import kotlin.reflect.KClass | ||
|
||
interface KeyValuesRepository { | ||
suspend fun <T : Any> set(key: String, value: T, clazz: KClass<out T> = value::class): KeyValueEntity<T> | ||
suspend fun set(key: String, value: String): String | ||
|
||
suspend fun <T : Any> get(key: String, clazz: KClass<T>): T? | ||
suspend fun get(key: String): String? | ||
|
||
suspend fun delete(key: String) | ||
} | ||
|
||
suspend inline fun <reified T : Any> KeyValuesRepository.set(key: String, value: T): KeyValueEntity<T> { | ||
return set(key, value, T::class) | ||
} | ||
|
||
suspend inline fun <reified T : Any> KeyValuesRepository.get(key: String) = get(key, T::class) |
19 changes: 8 additions & 11 deletions
19
.../kotlin/me/sujanpoudel/playdeals/repositories/persistent/PersistentKeyValuesRepository.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
61 changes: 61 additions & 0 deletions
61
...src/test/kotlin/me/sujanpoudel/playdeals/repositories/PersistentKeyValueRepositoryTest.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,61 @@ | ||
package me.sujanpoudel.playdeals.repositories | ||
|
||
import io.kotest.matchers.shouldBe | ||
import io.vertx.core.Vertx | ||
import io.vertx.kotlin.coroutines.await | ||
import io.vertx.sqlclient.SqlClient | ||
import me.sujanpoudel.playdeals.IntegrationTest | ||
import me.sujanpoudel.playdeals.common.exec | ||
import me.sujanpoudel.playdeals.domain.entities.value | ||
import me.sujanpoudel.playdeals.get | ||
import org.junit.jupiter.api.Test | ||
import java.time.OffsetDateTime | ||
|
||
class PersistentKeyValueRepositoryTest(vertx: Vertx) : IntegrationTest(vertx) { | ||
|
||
private val repository by lazy { di.get<KeyValuesRepository>() } | ||
private val sqlClient by lazy { di.get<SqlClient>() } | ||
|
||
@Test | ||
fun `should create new entry on db`() = runTest { | ||
val value = repository.set(KEY, "test") | ||
|
||
val valueFromDb = sqlClient.preparedQuery(""" SELECT * from "key_value_store" where key=$1""") | ||
.exec(KEY) | ||
.await() | ||
.first() | ||
.getString("value") | ||
|
||
value shouldBe valueFromDb | ||
} | ||
|
||
@Test | ||
fun `should perform update if item with id already exists`() = runTest { | ||
repository.set(KEY, "test") | ||
|
||
val updated = repository.set(KEY, "test1") | ||
|
||
val fromDb = sqlClient.preparedQuery(""" SELECT * from "key_value_store" where key=$1""") | ||
.exec(KEY) | ||
.await() | ||
.first() | ||
.value() | ||
|
||
fromDb shouldBe updated | ||
} | ||
|
||
@Test | ||
fun `should be able to serialize unknown types`() = runTest { | ||
val value = OffsetDateTime.now() | ||
|
||
repository.set(KEY, value.toString()) | ||
|
||
val fromDb = repository.get(KEY).let(OffsetDateTime::parse) | ||
|
||
fromDb shouldBe value | ||
} | ||
|
||
companion object { | ||
const val KEY = "test_key" | ||
} | ||
} |