DLM Automation 2

Use the TeamCity plugin

This example shows you how use the DLM Automation TeamCity plugin to validate, test and sync your development schema.

In this example, you'll use TeamCity and DLM Automation's TeamCity plugin build runners to:

When you've finished, TeamCity will automatically trigger a continuous integration process every time a change is checked into version control.

Before you start

Get a copy of your database scripts folder and place it into source control. You can either:

    • use your database source controlled using SQL Source Control
    • generate a folder from an existing database using SQL Compare and place that under source control
    • download and unzip WidgetShop.zip and place that under source control

On your build server:

  • Make sure you have JetBrains TeamCity version 7 or later. We've tested this example against version 9.1.1. If you didn't previously have an installation, this automatically installs a default build agent.
  • Install the TeamCity plugin: see setting up the TeamCity plugin.

On your build agent:

  • Install Redgate DLM Automation by downloading the SQL Toolbelt installer from the Redgate website and following the instructions.

Create a TeamCity project

You can add the build step to an existing project / build configuration, but for the purposes of this example we'll create a new project to work with.

  1. In TeamCity Administration, under Projects, click Create project:
  2. On the Create New Project page, add WidgetShop as the name for the project. 
    The Project ID is created automatically:
  3. Click Create.
  4. Under Build Configurations, click Create build configuration:
  5. On the Create Build Configuration page, add WidgetDevelopment as the build name: 
  6. Click Create

Link the database to TeamCity

Configure the TeamCity VCS settings so it knows which network folder to monitor for changes. Here we link to an SVN repository, but you can use whichever VCS you set up earlier:

  1. On the VCS Roots page, from the Type of VCS drop-down list, select Subversion.
  2. Under VCS Root Name and ID, in the VCS root name field, enter a name - e.g. SVN WidgetShop - as the unique name for this root. 
    Under SVN Connection Settings, in the URL field, enter your repository URL - e.g. file:///Z:/WidgetShop/.
    This was the Database repository URL you entered when you linked the database to source control, if you are using SQL Source Control.
     

    If authentication is required for your source control server, you must specify a username and password.

  3. Click Test connection. TeamCity checks that it can connect to the source control location.
  4. Once the 'connection successful' message is displayed, close it and click Create

    The VCS settings are complete.

 Continuous integration

These sections explain how to add automated steps to:

Build a package

In this section you'll use the DLM Automation TeamCity plugin to:

Add a build step

You'll add the build step using one of Redgate's build runners for TeamCity. 

A build runner allows a specific third party build tool, such as DLM Automation, to integrate with TeamCity. This example uses the DLM Automation Build runner that's part of Redgate's DLM Automation TeamCity plugin. It defines how to run the build and handle the output.

For more information on build runners, see Configuring Build Steps (JetBrains documentation).

When the build step validates the creation script, DLM Automation creates a temporary version of the database using LocalDB. This database is dropped once the build is complete.

  1. From the Build Configuration Settings menu, select Build Steps.
  2. Click Add build step:
     
  3. From the Runner type drop-down, select Redgate DLM Automation Build:
  4. Under Source-controlled database, leave the Database folder is my build VCS root option selected.
    We've already configured the VCS root as our database location. If you're using the step as part of a larger project, you can change this and specify where your database folder is.
  5. Under Output package, at the Package ID field, enter a name, e.g. WidgetShopLatest.
    This is the name of the NuGet package you'll create. The name must be unique and can't contain spaces.

    When you're thinking of a package name to use in your own environment, remember that it's going to be deployed to other environments. A generic name that describes what you're deploying is better than one that's specific to the build step or the database itself. For example, if your database is called Development, this wouldn't make sense as a package name deployed to your production database.

  6. Under Temporary database server, select SQL LocalDB.
    DLM Automation uses LocalDB to recreate and validate a temporary version of your database. This database is dropped once the build is complete.
    LocalDB will work for this example, but if you have features in your database that are not supported by LocalDB - like full text indexing - you will need to specify an actual SQL Server instance that the build system can talk to and create a temporary database on.

  7. If you're using Redgate's DLM Dashboard (version 1.4.4.313 or later), DLM Automation can send schema information to it every time the build step runs. Under DLM Dashboard integration:

    1. Enable the Send schema information to DLM Dashboard check box.
    2. Enter the name or IP address of the machine hosting the DLM Dashboard. 
    3. Enter the DLM Dashboard port number. The default port is 19528.

    Once you deploy changes (for example, by running the sync step), DLM Dashboard:

    • recognizes the deployed schema from the information DLM Automation sent during the build step
    • adds the schema to its list of recognized schemas, with the name <packageId-packageVersion>, for example, WidgetShop1.0
    • labels the schema with the DLM Automation icon 
    • labels the schema as an update , not drift 

    For more information about how DLM Automation works with DLM Dashboard, see DLM Automation integration (DLM Dashboard documentation). 

  8. DLM Automation can include SQL Doc database documentation in the NuGet package that it builds. To select this option, under Database documentation, click Include database documentation.

    Including database documentation will increase the size of the NuGet package and the time it takes to build, particularly for large databases.

    The documentation is stored in db > docs > main.html in the NuGet package. If you're using DLM Dashboard version 1.6.3 or later and have set up DLM Dashboard integration, you can also view the documentation directly from DLM Dashboard. See DLM Automation integration (DLM Dashboard documentation) for more details. For help understanding SQL Doc documentation, see What's in the documentation?

  9. Click Save.

Add a VCS trigger

Add a trigger that'll force a build every time a change is checked into version control:

  1. From the Build Configuration Settings menu, select Triggers:
  2. On the Triggers page, click Add new trigger and select VCS Trigger from the drop-down:
  3. Click Save.
    TeamCity will now run a build when you check in a change to your WidgetDevelopment database.

Trigger a build

  1. To run a build either make a change in the source control repository or click Run.
  2. To display the build status, click Projects:
  3. To show a summary of the log messages printed by the build, move your cursor over the Success  drop-down button, and then click Build log.
  4. To view the NuGet package, click Artifacts:

    The build artifact is the name TeamCity gives to the output of a build step. In this example, the NuGet package is the artifact, and it's stored on TeamCity's server until we're ready to deploy it.

Test the package

In this section you'll:

The WidgetDevelopment database used by this example already has tSQLt installed. If you're setting this up in your own environment, you'll need to install it. For more information, see SQL Test

Check the SQL Data Generator file into version control

We've provided a SQL Data Generator file that's already configured to generate data that's meaningful to the rows, columns and tables in the WidgetDevelopment database. You can extract this file from the WidgetDevelopmentDatabaseCIDemo.zip file.

If you've been using a different database but would like to use our pregenerated file for this step, either run WidgetDevelopment.sql from the above file and link it to your VCS with SQL Source Control, or get the scripts folder straight out of WidgetShop.zip and put that directly into your VCS. Otherwise you'll need to create a new SQL Data Generator project file for your own database using SQL Data Generator.

If you already have WidgetDevelopment in source control and are using SVN with TortoiseSVN:

  1. Using Windows Explorer, copy the WidgetTestData.sqlgen file from WidgetDevelopmentDatabaseCIDemo > WidgetShop > Database to the location you added the database to source control.
  2. Right-click on the WidgetTestData.sqlgen file and select TortoiseSVN > Add.
  3. Right-click again and select SVN Commit.
  4. At the Commit dialog, add a comment, for example, sqlgen file added. Click OK.

Add a test step

You can run different types of tSQLt tests, such as static analysis, unit or integration tests, against your temporary database. 

If you are using your own database you will need to set up some of these. SQL Test makes it easy for you to add the SQL Cop suite of static analysis tests if you would like some examples.

The database schema for WidgetDevelopment already includes four basic SQL Cop tests that will run against the temporary database and check for:

There's also a unit test in the schema that checks email addresses in the Contacts column. Once the tests are complete, DLM Automation generates test reports for review. The temporary database is then dropped.

To create the test step:

  1. On the Build Steps page, click Edit on your build step (or create a new build step if necessary - see Build a package above)
  2. At the Run tests option, leave Run every test selected.
  3. At the Generate test data option, select the Populate the database with data before testing check box, and enter the path to the WidgetTestData.sqlgen file (or your own .sqlgen project file).
    This must be relative to the VCS Root folder. In this example, the path is file:///Z:/WidgetShop/, so you just need to enter WidgetTestData.sqlgen.
  4. Click Save.

Trigger a build

Make a change to the database to trigger the build and test steps automatically:

  1. Check in a change to the database with SQL Source Control or your source control system.
  2. To display the build status, in TeamCity click Projects > YourProjectName (e.g. WidgetShop). 
    Once the build step is complete, the test step starts automatically.
  3. Once the steps are complete, click Tests passed: 5:

  4. Click the Tests tab.
    Details of the completed tests are displayed:

    To see more details about a specific test, or for troubleshooting a failed test, move your cursor over the  drop-down button and select Show in build log.

Sync the package to a CI environment

Once your database has been through an initial test phase, it's good practice to run system, acceptance or smoke tests against it in an environment that simulates production. We'll called this the CI database, although it's sometimes called staging or preproduction.

In this section you'll:

Create a CI database

Create a blank database as your CI database:

  1. Open SQL Server Management Studio (SSMS).
  2. Click New Query.
  3. Execute the following SQL query to create e.g. the WidgetCI database: 

     

    CREATE DATABASE WidgetCI
    GO
    USE WidgetCI
    GO

    It doesn't need to be checked into source control because it'll be updated automatically every time a change is made to the development (e.g. WidgetDevelopment) database.

Add a sync step

Add a sync step in TeamCity:

  1. On the Build Steps page, click Add build step.
  2. From the Runner type drop-down, select Redgate DLM Automation Sync.
  3. Under Output package, at the Package ID text box, enter your package name, e.g. WidgetShopLatest. This is the name of the NuGet package your build step created and your tests have tested.
  4. Under Database server, enter the name of the target server and database you want to update. In this example, we're updating the WidgetCI database using Windows authentication.
  5. Click Save.

Trigger a build

Check in a change to your database to trigger a build.

Once the build and test steps are complete, open SSMS to verify that the WidgetCI database has been synchronized with the contents of WidgetDevelopment:

The WidgetCI database is now up to date with the latest version in source control. At this point, you could run additional tests against it.

Publish the package to a NuGet feed

Now that you've finished testing, you can publish the package to a NuGet feed. You can then use Octopus Deploy with DLM Automation to manage deployments.

We'll use TeamCity as a NuGet server to save you having to set up your own repository. For more details, see Using TeamCity as a NuGet Server (TeamCity documentation). 

In this section you'll:

If you're using a different release management tool, check the help documentation provided by that tool vendor.

Enable the TeamCity NuGet server

  1. In TeamCity Administration, under Integrations, click NuGet:
  2. On the NuGet Server tab, click Enable:
     

Trigger a build

Trigger a build to publish the package to the NuGet feed automatically.



Didn't find what you were looking for?