Mercurial > repos > IBDev-IBBoard.WarFoundry.API.Tests
view API/Factories/AbstractNativeWarFoundryFactoryTest.cs @ 166:6b9e86d4be95
Re #358: Handle factory.CreateObjectsFromFile where GetFileAsSupportedType returns null
* Add specific unit test
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Tue, 06 Sep 2011 20:35:08 +0100 |
parents | 453640610ef9 |
children | 03ccff4d5e8a |
line wrap: on
line source
// This file (AbstractNativeWarFoundryFactoryTest.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2011 IBBoard // // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU Affero GPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license. using System; using NUnit.Framework; using IBBoard.WarFoundry.API.Factories.Mock; using System.Diagnostics; using NUnit.Framework.SyntaxHelpers; using System.IO; namespace IBBoard.WarFoundry.API.Factories { [TestFixture] public class AbstractNativeWarFoundryFactoryTest { [Test] public void Bug94TestLoadingTimesForNonZipFiles() { MockNativeWarFoundryFactory factory = new MockNativeWarFoundryFactory(); Stopwatch sw = Stopwatch.StartNew(); factory.CreateObjectsFromFile(new FileInfo("testdata/Test.race")); sw.Stop(); long successElapsed = sw.ElapsedMilliseconds; sw.Reset(); sw.Start(); factory.CreateObjectsFromFile(new FileInfo("testdata/TextFileWithWrongExtension.race")); sw.Stop(); long failedElapsed = sw.ElapsedMilliseconds; long timeRatio = failedElapsed / successElapsed; Assert.That(timeRatio, Is.LessThan(10)); } [Test] public void Bug358TestLoadingOfFailedFiles() { MockNativeWarFoundryFactory factory = new MockNativeWarFoundryFactory(); //This will also be triggered by Bug94TestLoadingTimesForNonZipFiles, but this makes it separate and explicit factory.CreateObjectsFromFile(new FileInfo("testdata/TextFileWithWrongExtension.race")); } } }