annotate API/Factories/AbstractNativeWarFoundryFactoryTest.cs @ 219:f951595143a9

Re #394: Make requirements (or factory) more closely match Rollcall methods * Add unit tests that match text * "N for M" factory already handled "2,X|Y" (format: "X;Y:2" - "X|Y" is equivalent to Rollcall's "1,X,1,Y")
author IBBoard <dev@ibboard.co.uk>
date Sat, 24 Mar 2012 16:46:06 +0000
parents 498396c77601
children 7c21ca1482cb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
165
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
1 // This file (AbstractNativeWarFoundryFactoryTest.cs) is a part of the IBBoard.WarFoundry.API.Tests project and is copyright 2011 IBBoard
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
2 //
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
3 // 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.
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
4 using System;
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
5 using NUnit.Framework;
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
6 using IBBoard.WarFoundry.API.Factories.Mock;
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
7 using System.Diagnostics;
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
8 using NUnit.Framework.SyntaxHelpers;
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
9 using System.IO;
196
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
10 using IBBoard.WarFoundry.API.Objects;
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
11 using System.Collections.Generic;
165
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
12
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
13 namespace IBBoard.WarFoundry.API.Factories
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
14 {
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
15 [TestFixture]
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
16 public class AbstractNativeWarFoundryFactoryTest
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
17 {
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
18 [Test]
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
19 public void Bug94TestLoadingTimesForNonZipFiles()
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
20 {
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
21 MockNativeWarFoundryFactory factory = new MockNativeWarFoundryFactory();
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
22 Stopwatch sw = Stopwatch.StartNew();
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
23 factory.CreateObjectsFromFile(new FileInfo("testdata/Test.race"));
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
24 sw.Stop();
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
25 long successElapsed = sw.ElapsedMilliseconds;
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
26 sw.Reset();
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
27 sw.Start();
167
03ccff4d5e8a Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents: 166
diff changeset
28 factory.CreateObjectsFromFile(new FileInfo("testdata/NotARaceFile.txt"));
165
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
29 sw.Stop();
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
30 long failedElapsed = sw.ElapsedMilliseconds;
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
31 long timeRatio = failedElapsed / successElapsed;
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
32 Assert.That(timeRatio, Is.LessThan(10));
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
33 }
166
6b9e86d4be95 Re #358: Handle factory.CreateObjectsFromFile where GetFileAsSupportedType returns null
IBBoard <dev@ibboard.co.uk>
parents: 165
diff changeset
34
6b9e86d4be95 Re #358: Handle factory.CreateObjectsFromFile where GetFileAsSupportedType returns null
IBBoard <dev@ibboard.co.uk>
parents: 165
diff changeset
35 [Test]
6b9e86d4be95 Re #358: Handle factory.CreateObjectsFromFile where GetFileAsSupportedType returns null
IBBoard <dev@ibboard.co.uk>
parents: 165
diff changeset
36 public void Bug358TestLoadingOfFailedFiles()
6b9e86d4be95 Re #358: Handle factory.CreateObjectsFromFile where GetFileAsSupportedType returns null
IBBoard <dev@ibboard.co.uk>
parents: 165
diff changeset
37 {
6b9e86d4be95 Re #358: Handle factory.CreateObjectsFromFile where GetFileAsSupportedType returns null
IBBoard <dev@ibboard.co.uk>
parents: 165
diff changeset
38 MockNativeWarFoundryFactory factory = new MockNativeWarFoundryFactory();
168
6dce5122caca Re #94: Slow file loading
IBBoard <dev@ibboard.co.uk>
parents: 167
diff changeset
39 //This will also be triggered by Bug94TestLoadingTimesForNonZipFiles, but this makes it separate and explicit
6dce5122caca Re #94: Slow file loading
IBBoard <dev@ibboard.co.uk>
parents: 167
diff changeset
40 FileInfo nonRaceFile = new FileInfo("testdata/NotARaceFile.txt");
6dce5122caca Re #94: Slow file loading
IBBoard <dev@ibboard.co.uk>
parents: 167
diff changeset
41 Assert.That(nonRaceFile.Exists, Is.True);
6dce5122caca Re #94: Slow file loading
IBBoard <dev@ibboard.co.uk>
parents: 167
diff changeset
42 Assert.That(factory.CanHandleFileFormat(nonRaceFile), Is.False);
166
6b9e86d4be95 Re #358: Handle factory.CreateObjectsFromFile where GetFileAsSupportedType returns null
IBBoard <dev@ibboard.co.uk>
parents: 165
diff changeset
43 }
196
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
44
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
45 [Test]
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
46 public void Bug380TestLoadingOfOSXesqueFile()
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
47 {
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
48 FileSearchingWarFoundryFactory factory = new FileSearchingWarFoundryFactory();
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
49 FileInfo file = new FileInfo("testdata/multifile-zips/Test-OSX-style.system");
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
50 Assert.That(factory.GetGameSystemZipEntries(file), Has.Count(3));
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
51 Assert.That(factory.GetRaceZipEntries(file), Has.Count(3));
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
52 Assert.That(factory.GetArmyZipEntries(file), Has.Count(3));
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
53 ICollection<IWarFoundryObject> objs = factory.CreateObjectsFromFile(file);
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
54 Assert.That(objs, Has.Count(0));
498396c77601 Re #380: WarFoundry chokes on zips written by Mac OS X
IBBoard <dev@ibboard.co.uk>
parents: 168
diff changeset
55 }
165
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
56 }
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
57 }
453640610ef9 Re #94: Loading files is too slow
IBBoard <dev@ibboard.co.uk>
parents:
diff changeset
58