Skip to content

williamlindsay/MySql.Server

 
 

Repository files navigation

MySql.Server Build Status Nuget

MySql standalone server for C# unit tests

Use

Download with NuGet, or download the release and include Mysql.Server.dll as a reference in your project.

How it works

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.

Examples

Create server, table and data.

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();

A test

        //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");
            }
        }

API

  • 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.

About

Mysql standalone server for unit testing in C#

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%