Move tests
This commit is contained in:
@@ -6,7 +6,6 @@ import integration.steps.`when`.Validate.REQUEST_BODY
|
|||||||
import integration.steps.`when`.Validate.REQUEST_PARAM
|
import integration.steps.`when`.Validate.REQUEST_PARAM
|
||||||
import integration.steps.`when`.`When I send a GET request`
|
import integration.steps.`when`.`When I send a GET request`
|
||||||
import integration.steps.`when`.`When I send a POST request`
|
import integration.steps.`when`.`When I send a POST request`
|
||||||
import integration.steps.`when`.`When I send a PUT request`
|
|
||||||
import integration.steps.`when`.`with body`
|
import integration.steps.`when`.`with body`
|
||||||
import integration.steps.given.`Given I have article`
|
import integration.steps.given.`Given I have article`
|
||||||
import integration.steps.given.`Given I have citizen`
|
import integration.steps.given.`Given I have citizen`
|
||||||
@@ -137,45 +136,4 @@ class `Comment articles routes` : BaseTest() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
fun `I can edit comment`() {
|
|
||||||
withIntegrationApplication {
|
|
||||||
`Given I have citizen`("Hubert", "Reeves")
|
|
||||||
`Given I have article`(id = "bb05e4a3-55a1-4088-85e7-8d8c23be29b1")
|
|
||||||
`Given I have comment on article`(article = "bb05e4a3-55a1-4088-85e7-8d8c23be29b1", createdBy = Name("Hubert", "Reeves"), id = "fd30d20f-656c-42c6-8955-f61c04537464")
|
|
||||||
`When I send a PUT request`("/comments/fd30d20f-656c-42c6-8955-f61c04537464") {
|
|
||||||
`authenticated as`("Hubert", "Reeves")
|
|
||||||
`with body`(
|
|
||||||
"""
|
|
||||||
{
|
|
||||||
"content": "Hello boy"
|
|
||||||
}
|
|
||||||
"""
|
|
||||||
)
|
|
||||||
} `Then the response should be` OK and {
|
|
||||||
`And the response should not be null`()
|
|
||||||
`And the response should contain`("$.content", "Hello boy")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
fun `I can get comment by its ID`() {
|
|
||||||
withIntegrationApplication {
|
|
||||||
`Given I have citizen`("Alfred", "Kastler")
|
|
||||||
`Given I have article`(id = "3897465b-19d2-43a0-86ea-1e29dbb11ec9")
|
|
||||||
`Given I have comment on article`(
|
|
||||||
article = "3897465b-19d2-43a0-86ea-1e29dbb11ec9",
|
|
||||||
createdBy = Name("Alfred", "Kastler"),
|
|
||||||
id = "edd296a8-fc7a-4717-a2bb-9f035ceca3c2",
|
|
||||||
content = "Hello boy"
|
|
||||||
)
|
|
||||||
`When I send a GET request`("/comments/edd296a8-fc7a-4717-a2bb-9f035ceca3c2") {
|
|
||||||
} `Then the response should be` OK and {
|
|
||||||
`And the response should not be null`()
|
|
||||||
`And the response should contain`("$.content", "Hello boy")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,14 @@
|
|||||||
package integration
|
package integration
|
||||||
|
|
||||||
|
import fr.dcproject.component.citizen.database.CitizenI
|
||||||
import integration.steps.`when`.`When I send a GET request`
|
import integration.steps.`when`.`When I send a GET request`
|
||||||
|
import integration.steps.`when`.`When I send a PUT request`
|
||||||
|
import integration.steps.`when`.`with body`
|
||||||
import integration.steps.given.`Given I have article`
|
import integration.steps.given.`Given I have article`
|
||||||
import integration.steps.given.`Given I have citizen`
|
import integration.steps.given.`Given I have citizen`
|
||||||
import integration.steps.given.`Given I have comment on article`
|
import integration.steps.given.`Given I have comment on article`
|
||||||
import integration.steps.given.`authenticated as`
|
import integration.steps.given.`authenticated as`
|
||||||
|
import integration.steps.then.`And the response should contain`
|
||||||
import integration.steps.then.`And the response should not be null`
|
import integration.steps.then.`And the response should not be null`
|
||||||
import integration.steps.then.`Then the response should be`
|
import integration.steps.then.`Then the response should be`
|
||||||
import integration.steps.then.and
|
import integration.steps.then.and
|
||||||
@@ -30,4 +34,48 @@ class `Comment routes` : BaseTest() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun `I can edit comment`() {
|
||||||
|
withIntegrationApplication {
|
||||||
|
`Given I have citizen`("Hubert", "Reeves")
|
||||||
|
`Given I have article`(id = "bb05e4a3-55a1-4088-85e7-8d8c23be29b1")
|
||||||
|
`Given I have comment on article`(article = "bb05e4a3-55a1-4088-85e7-8d8c23be29b1", createdBy = CitizenI.Name(
|
||||||
|
"Hubert",
|
||||||
|
"Reeves"
|
||||||
|
), id = "fd30d20f-656c-42c6-8955-f61c04537464")
|
||||||
|
`When I send a PUT request`("/comments/fd30d20f-656c-42c6-8955-f61c04537464") {
|
||||||
|
`authenticated as`("Hubert", "Reeves")
|
||||||
|
`with body`(
|
||||||
|
"""
|
||||||
|
{
|
||||||
|
"content": "Hello boy"
|
||||||
|
}
|
||||||
|
"""
|
||||||
|
)
|
||||||
|
} `Then the response should be` OK and {
|
||||||
|
`And the response should not be null`()
|
||||||
|
`And the response should contain`("$.content", "Hello boy")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
fun `I can get comment by its ID`() {
|
||||||
|
withIntegrationApplication {
|
||||||
|
`Given I have citizen`("Alfred", "Kastler")
|
||||||
|
`Given I have article`(id = "3897465b-19d2-43a0-86ea-1e29dbb11ec9")
|
||||||
|
`Given I have comment on article`(
|
||||||
|
article = "3897465b-19d2-43a0-86ea-1e29dbb11ec9",
|
||||||
|
createdBy = CitizenI.Name("Alfred", "Kastler"),
|
||||||
|
id = "edd296a8-fc7a-4717-a2bb-9f035ceca3c2",
|
||||||
|
content = "Hello boy"
|
||||||
|
)
|
||||||
|
`When I send a GET request`("/comments/edd296a8-fc7a-4717-a2bb-9f035ceca3c2") {
|
||||||
|
} `Then the response should be` OK and {
|
||||||
|
`And the response should not be null`()
|
||||||
|
`And the response should contain`("$.content", "Hello boy")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user