-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathIntegrationTesting.scala
112 lines (95 loc) · 3.22 KB
/
IntegrationTesting.scala
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package com.evolutiongaming.bootcamp.testing2
import UserService._
import io.circe.Decoder.state
import java.sql.Connection
import java.sql.DriverManager
import org.openqa.selenium.WebDriver
import org.openqa.selenium.htmlunit.HtmlUnitDriver
import org.scalatest.funsuite.AnyFunSuite
import org.scalatestplus.selenium.HtmlUnit
import org.scalatestplus.selenium.WebBrowser
// This is the most expensive type of the tests, because of potential flakiness
// and the need of the heavyweight machines to execute them.
//
// Nowadays, with advent of Selenium DSL etc., it is quite easy to use integration
// testing DSLs for the applications, and, as consequence, some teams are crazy
// overdoing with these. We recommend to push as much as possible testing towards
// unit and compiler level tests.
//
// Integration tests could be run using embedded servers or using real virtual
// environments using docker containers etc.
//
// *Exercise 1*
//
// Implement a test checking that there is CrazyTime game on Evolution site.
//
// sbt:scala-bootcamp> testOnly *testing2.EvolutionSiteSpec
//
class EvolutionSiteSpec extends AnyFunSuite with WebBrowser {
implicit val driver: WebDriver = new HtmlUnitDriver
test("new Evolution Gaming domain could be found using Duck Duck Go") {
goTo("https://duckduckgo.com/")
assert(pageTitle.startsWith("DuckDuckGo"))
textField("q").value = "Evolution Gaming"
submit()
assert(pageSource contains "evolution.com")
}
test("Evolution site contains Crazy Coin Flip game") {
???
}
}
// *Exercise 2*
//
// Sometimes integration tests could be a necessity or, at least very useful.
// For example, if you need to check your SQL queries are working.
//
// Implement the missing tests for `UserService`.
//
// sbt:scala-bootcamp> testOnly *testing2.UserServiceSpec
//
// Hint: do not use plain JDBC in Scala, there are much more convenient libraries
// for real work, i.e. Doobie, Quill, Slick etc. which provide automatic resource
// management, class mapping etc. You will learn them later during this course.
//
class UserService(connection: Connection) {
def createTable(): Unit = {
val statement = connection.createStatement()
try {
statement.execute("create table players(id VARCHAR, name VARCHAR, score INT)")
} finally {
statement.close()
}
}
def insert(player: Player): Unit = {
val statement = connection.createStatement()
try {
statement.execute(s"insert into players values ('${player.id}', '${player.name}', ${player.score})")
} finally {
statement.close()
}
}
}
object UserService {
case class Player(id: String, name: String, score: Int)
}
class UserServiceSpec extends AnyFunSuite {
class Fixture {
Class.forName("org.h2.Driver")
val connection = DriverManager.getConnection("jdbc:h2:mem:UserServiceSpec")
}
test("that we can create a table in a database") {
val f = new Fixture
val service = new UserService(f.connection)
service.createTable()
}
test("that we can insert a player") {
val f = new Fixture
val service = new UserService(f.connection)
???
}
test("that we can select a player") {
val f = new Fixture
val service = new UserService(f.connection)
???
}
}