tSQLt – The Database Unit Testing Framework for SQL Server

learn more… | top users | synonyms

0
votes
2answers
35 views

Error reporting tool for SQL Server database

I am looking for an open-source web reporting tool for my tSQLt errors on a SQL Server database. When I run unit tests tSQLt generates the below mentioned information on a table. I want to generate ...
1
vote
3answers
111 views

Select unique column names from a list of joined tables

I have a list of tables that can be joined together by the same PK column. Since this list of tables can vary from project to project, I want to create a query that can be dynamic enough to pull all ...
0
votes
2answers
34 views

Executing Insert into statement in SQL resulting in nulls for other columns

i am trying to use an insert into a column where the data for other columns already exists, but the data is not populating adjacent to the other columns, instead data is inserted after all the data in ...
0
votes
0answers
39 views

tSQLt projects fail to build in Visual Studio 2012

I have a number of database projects using tSQLt that build correctly in Visual Studio 2010. When I open them in Visual Studio 2012, I'm informed that the IDE has to make "functional changes" in order ...
0
votes
0answers
20 views

How to build tSQLt from source?

Can I build the same tSQLt.zip hosted on Sourceforge by building from source? How do I do that? I've checked out the head (currently r200) of the tSQLt SVN repository using this command: svn ...
0
votes
1answer
105 views

How to create default constraint dependent other column in sql server

i have a table like this tab1 create table tab1(ID int identity(1,1), Type varchar(10),IsValued bit) tab1: ID Type IsValued ---------------- 1 S 1 2 R 0 3 R 0 4 S 1 5 S 1 6 ...
0
votes
4answers
66 views

How to perform delete rows on some condition with EF?

in ADO.NET I can use delete statement to delete some rows from an SQL table. what is the equivalent in Entity Framework? How can I achieve that same result? updateing with null objects isn't the ...
0
votes
0answers
39 views

tSQLt FakeTable fails when user-defined date types are used

I got the following error when I tried to fake a table that uses user-defined data types. COLLATE clause cannot be used on user-defined data types.{,1} It looks like it's a known issue in tSQLt. ...
0
votes
1answer
46 views

tSQLt.FakeTable doesnt seem to work with views that have constants/derived fields

exec tSQLt.SetFakeViewOn 'dbo.viewWithIssues'; GO CREATE PROCEDURE TestChanges.[Test Data] AS BEGIN ... exec tSQLt.FakeTable 'dbo.viewWithIssues', @identity=1, @ComputedColumns=1, @Defaults=1; ...
0
votes
2answers
64 views

Can't update table

So right now I have a simple SQL store procedure which I can call to update one of the tables in my database. Within the store procedure, I have an If conditional statement: IF 1 > 0 THEN ...
1
vote
1answer
41 views

How to Iterate through table and combine it's result with the value coming from SP

I need to join two tables in following way TABLE_A Id Name Table_Ref RefID --Auto increament I need to insert into Table_Ref and Join each inserted id with Table_A row as Id Name ...
1
vote
1answer
195 views

Bamboo with tSQLt - Failed to parse test result file

First of all I should point out I'm new to Atlassian's Bamboo and continuous integration in general. This is the first project where I've used either. I've created a raft of unit tests using the ...
0
votes
1answer
107 views

What are the success exit codes from tSQLt

I am trying to integrate tSQLt / SQLTest with CruiseControl.NET My tests are running and I've written xsl files to display the results but I need to know how to mark the build as failed if any tests ...
0
votes
2answers
86 views

FakeTable with tSQLt remove triggers

I have jsut started to use tSQLt and is about to test a trigger. I call the FakeTable procedure and do my test but the trigger is not executed. If don't use FakeTable the trigger is executed. That ...
1
vote
1answer
101 views

tsqlt - create separate database for unit testing

I have started using tsqlt, and my question is it possible to have a separate database with just the testing stuff? (tables/sp's/assemblies etc). This testing database will sit on the same instance ...
0
votes
1answer
72 views

tSQLt AssertEqualsTable does not check ordering

I have two tables defined for actual and expected with exactly the same schema. I insert two rows into the expected table with say Ids of 2, 1. I run INSERT INTO actual EXEC tSQLt.ResultSetFilter ...
3
votes
0answers
168 views

tsqlt error handling trumping stored procedure (unit) error handler

When trying to validate a user supplied GUID within a stored procedure a simple approach was used; take the user input as a CHAR(36) then explicitly CAST it as a UNIQUEIDENTIFIER within a TRY CATCH. ...
0
votes
1answer
143 views

T-SQL to group results by a range of possible values

Not sure how to word the question: I have a query such as SELECT s.* FROM SUMMARY s WHERE s.TYP = 'A' AND s.NUM > 0 AND s.NUM <= 999999 and a group by like SELECT s.TYP, s.COUNT(TYPE) FROM ...
5
votes
2answers
3k views

The database owner SID recorded in the master database differs from the database owner SID

When I try to install tSQLt onto an existing database i get the following error: The database owner SID recorded in the master database differs from the database owner SID recorded in database ...
0
votes
1answer
376 views

TSQLT unit test - The data types text and text are incompatible in the equal to operator

I am getting this error from AssertEqualsTable "The data types text and text are incompatible in the equal to operator." then "The 'TableCompare' procedure attempted to return a status of NULL, ...
3
votes
1answer
130 views

How do I recover when tSQLt faketable does not reset table mapping?

faketable function did not reassign to normal. All my tables I used faketable on now contain the content of the values I used in the insert of the unit test. It was many tables and it has left my ...
0
votes
1answer
56 views

tSQLt AssertEqualsTable support for the Geography data type

When I create two tables that contain a geography column and use tSQlt.AssertEqualsTable, the test fails with: failed: Invalid operator for data type. Operator equals equal to, type equals ...
1
vote
2answers
275 views

tSQLt TRUSTWORTHY and CLR requirement

The tSQLt test framework requires to set TRUSTWORTHY ON for the database, and to enable SQL CLR for the server. Why are these required? Is it possible to achieve the same/similar functionality ...
0
votes
1answer
64 views

What version of tSQLt (Database Test Framework) have I installed?

Is there any way I can find the version number of tSQLt that is installed on a database? Please note that tSQLt is a test framework for SQL server, not T-SQL. (don't vote to close as duplicate of ...
2
votes
2answers
213 views

tSQLt fails when attempting to FakeTable a synonym table

I am using tSQLt (through Red Gate's SQL Test version 1.0.0.455). tSQLt is installed on database A. I am trying to do a tSQLt.FakeTable on a table in database B on the same SQL server instance ...
3
votes
2answers
223 views

How to get MAX int but exclude specific int?

I'd like to get the max integer from a specific column excluding a value that will always be the max if present. Data may look like the following: score, empid 1 3 3 3 10 3 1 ...
4
votes
2answers
595 views

SQLCop tests for tSQLt

The Redgate tool SQLTest for SQL unit testing now offers the ability to add tests from SQLCop however the Redgate tool only comes with few of those tests prebuild. Since tests are just stored ...
2
votes
2answers
147 views

Unit testing with tSQLt on computed columns

I’ve been writing some tSQLt database unit tests (via Red Gate SQL Test) on procedures which call tables containing (persisted) computed columns recently, and note that if I use the FakeTable SP, I ...
1
vote
1answer
206 views

How to ROLLBACK a transaction when testing using tSQLt

I recently was calling a procedure that contained a rasierror in the code. The raiserror was in a try catch block. Also a BEGIN TRAN was in the same try catch block after the raiserror. The Catch ...
2
votes
2answers
306 views

Why does the first tSQLt sample test fom Red Gate SQL Test fail on my system?

I recently installed the SQL Test plug-in on a virtual machine (VMWare 8) running SSMS for SQL Server 2008 R2. This is a front end for tSQLt. I enabled CLR on the server. I installed the tSQLt ...
2
votes
2answers
84 views

Any tool to test SQL Server Stored Procs when data is not available in the database.

Are you aware of any utility or tool which tests sql server stored procedures where data is not available in the database, may be that tool should insert data into DB by reading the stored ...
0
votes
2answers
185 views

Union or Use Flow Control Logic to Determine which table to report on

I'm working with a 3rd pary app where I can't alter the tables. We built custom matching "Monthly" tables with an additional datetime column "AsOfDate" where we dump the data at the end of the month ...