For integration tests, I created a DUnit test suite which runs once for every version of a third party component (a message broker). Unfortunately, some tests always fail because of known bugs in some versions of the tested component.

This means the test suites will never complete with 100%. For automated tests however, a 100% success score is required. DUnit does not offer a ready-made method to disable tests in a test suite by name.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

I wrote a procedure which takes a test suite and a list of test names, disables all tests with a matching name, and also performs a recursion into nested test suites.

procedure DisableTests(const ATest: ITest; const AExclude: TStrings);
var
  I: Integer;
begin
  if AExclude.IndexOf(ATest.Name) <> -1  then
  begin
    ATest.Enabled := False;
  end;
  for I := 0 to ATest.Tests.Count - 1 do
  begin
    DisableTests(ATest.Tests[I] as ITest, AExclude);
  end
end;

Example usage (the TStringlist ‘Excludes’ is created in the Setup method):

procedure TSuiteVersion1beta2.SetUp;
begin
  // fill test suite
  inherited;

  // exclude some tests because they will fail anyway
  Excludes.Add('TestA');
  Excludes.Add('TestB');

  DisableTests(Self, Excludes);
end;
link|improve this answer
+1 thx, this gives me some new ideas for our own suites. – Lieven Nov 25 '10 at 18:11
btw, I would love to see how you register your tests and how you get a reference to the component for each specific testsuite in your testcase. – Lieven Nov 25 '10 at 18:13
maybe OpenCTF (open component test framework for Delphi) gives some ideas, it generates suites of unit tests for every single component and validates their properties - sourceforge.net/projects/openctf – mjn Nov 25 '10 at 20:24
thank you. – Lieven Nov 26 '10 at 7:47
Very nice! I actually needed this too. – Warren P Nov 27 '10 at 0:15
feedback

Your Answer

 
or
required, but never shown

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