summaryrefslogtreecommitdiff
path: root/src/integrationTest/kotlin
diff options
context:
space:
mode:
Diffstat (limited to 'src/integrationTest/kotlin')
-rw-r--r--src/integrationTest/kotlin/dev/dnpm/etl/processor/web/HomeControllerTest.kt10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/integrationTest/kotlin/dev/dnpm/etl/processor/web/HomeControllerTest.kt b/src/integrationTest/kotlin/dev/dnpm/etl/processor/web/HomeControllerTest.kt
index c2b6759..e4fab05 100644
--- a/src/integrationTest/kotlin/dev/dnpm/etl/processor/web/HomeControllerTest.kt
+++ b/src/integrationTest/kotlin/dev/dnpm/etl/processor/web/HomeControllerTest.kt
@@ -138,7 +138,7 @@ class HomeControllerTest {
)
val page = webClient.getPage<HtmlPage>("http://localhost/")
- assertThat(page.querySelectorAll("tbody tr")).hasSize(2)
+ assertThat(page.querySelectorAll("div.card")).hasSize(2)
assertThat(page.querySelectorAll("div.notification.info")).isEmpty()
}
@@ -203,7 +203,7 @@ class HomeControllerTest {
)
val page = webClient.getPage<HtmlPage>("http://localhost/patient/PSEUDO1")
- assertThat(page.querySelectorAll("tbody tr")).hasSize(2)
+ assertThat(page.querySelectorAll("div.card")).hasSize(2)
assertThat(page.querySelectorAll("div.notification.info")).isEmpty()
}
@@ -309,9 +309,9 @@ class HomeControllerTest {
)
val page = webClient.getPage<HtmlPage>("http://localhost/patient/PSEUDO1")
- assertThat(page.querySelectorAll("tbody tr")).hasSize(1)
- assertThat(page.querySelectorAll("tbody tr > td > small").first().textContent)
- .isEqualTo("NO_CONSENT")
+ assertThat(page.querySelectorAll("div.card")).hasSize(1)
+ assertThat(page.querySelectorAll("div.card div").first().textContent)
+ .isEqualTo("Gestoppt: Kein Consent")
}
}
}