Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Currently I'm using Visual Studio 2012 RC and SQL Server 2012 RTM.

I'd like to know how to re-deploy/re-create a test database for each test run.

Keep in mind I've a SQL Server database project for the database using Visual Studio 2012's template.

Actually I'm not very sure about an idea I got in my mind, but .testsettings file has Setup and cleanup scripts. Is this the way to go? For example, a PowerShell script reading the database project generated script and executing it against the database?

I guess there're better ways of doing that and it should be an out-of-the-box solution but I ignore it and Google doesn't help me in finding the right solution.

Thank you and let's see!

share|improve this question
Do you want to deploy and test against the SQL Server, or against LocalDB? If you are rebuilding every time, I would suggest testing against LocalDB. Also, are you using TFS, or something else as a build agent? By "run all tests" do you mean manually selecting to run all the tests, or some form of automation (i.e. after every build, CI, gated check in etc)? – aclear16 Aug 10 '12 at 18:10
@aclear16 I want to deploy against SQL Server. For now, it's not for TFS Build, it's for executing ordered tests manually. – Matías Fidemraizer Aug 12 '12 at 7:20

2 Answers

up vote 3 down vote accepted

As mentioned you'll probably want to use the VS 2012 .Local.testsettings > Setup and Cleanup scripts to create / tear down you SQL Server database.

enter image description here

For the script you may want to use powershell with a .dacpac (rather than just a T-SQL script), since you are using a SSDT project. Here's a link to some example code - in particular you may want to take a look at the 'Deploy-Dac' command.

If you are unfamiliar with .dacpacs as the (build) output of SSDT-created database projects, take a look at this reference link.

share|improve this answer
Thanks, I'll give it a try. Let me check your instructions :) – Matías Fidemraizer Aug 13 '12 at 7:02
Can a PowerShell script be launched directly as a Setup and Cleanup script? – Matías Fidemraizer Aug 13 '12 at 7:38
In instance, what do you think about aclear16's approach of LocalDB (see his comment in the question itself). – Matías Fidemraizer Aug 13 '12 at 8:06

The fastest solution, while a bit of a hack, is really straightforward. You can set the DB Projects properties under the debugging tab to "always re-created DB". Then test in two clicks, do a debug/build, then run all tests. You should get a freshly built DB on localDB for you tests to be ran against. You can also change the target for the debugging DB (again the DB projects properties) to whatever you want, so you can deploy to a .dacpac, or to an existing SQL DB or wherever. It means testing in two steps, and if your build is long, it may be annoying, but it works. Otherwise, I believe scripting is your only option.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.