MySql standalone server for C# unit tests
Download with NuGet, or download the release and include Mysql.Server.dll as a reference in your project.
Mysql.Server is simply running a minimal instance of MySql (currently version 5.7.20). Necessary data and log files are created at run time (and are cleaned up afterwards).
Mysql.Server makes it possible to create and run unit tests on a real MySql server without spending time on server setup.
See Example.cs for a complete example.
//Get an instance
MySqlServer dbServer = MySqlServer.Instance;
//Start the server
dbServer.StartServer();
//Create a database and use it
MySqlHelper.ExecuteNonQuery(dbServer.GetConnectionString(), "CREATE DATABASE testserver;");
//Insert data
MySqlHelper.ExecuteNonQuery(dbServer.GetConnectionString("testserver"), "INSERT INTO testTable (`id`, `value`) VALUES (2, 'test value')");
//Shut down server
dbServer.ShutDown();
//Concrete test. Writes data and reads it again.
[TestMethod]
public void TestMethod()
{
MySqlServer database = MySqlServer.Instance;
MySqlHelper.ExecuteNonQuery(database.GetConnectionString("testserver"), "INSERT INTO testTable (`id`, `value`) VALUES (2, 'test value')");
using (MySqlDataReader reader = MySqlHelper.ExecuteReader(database.GetConnectionString("testserver"), "SELECT * FROM testTable WHERE id = 2"))
{
reader.Read();
Assert.AreEqual("test value", reader.GetString("value"), "Inserted and read string should match");
}
}
-
MySqlServer.Instance: Retrieves an Instance of the server API.
-
MySqlServer.StartServer(bool initialze = false): Starts the server. Can also initialize the database before use if required.
-
MySqlServer.StartServer(int serverPort, bool initialze = false): Starts the server at a specified port. Nice to have if you have a real MySql server running on the test machine. Can also initialize the database before use if required.
-
MySqlServer.ShutDown(): Shuts down the server.
-
MySqlServer.GetConnectionString(): Returns a connection string to be used when connecting to the server.
-
MySqlServer.GetConnectionString(string databasename): Returns a connection string to be used when connecting to the server and a specific database. This method can only be used if a database is already created.
-
MySqlServer.ProcessId: Returns the process id of the server. Returns -1 if the process has exited.
-
MySqlServer.ServerPort: Returns the server port of the instance.