Parcourir la Source

All tests green for database functionality.

bmallred 13 ans auparavant
Parent
Commettre
4c34a01aa3

BIN
Resources/Antlr3.Runtime.dll


BIN
Resources/Castle.Core.dll


BIN
Resources/Iesi.Collections.dll


BIN
Resources/NHibernate.ByteCode.Castle.dll


BIN
Resources/NHibernate.dll


BIN
Resources/Remotion.Data.Linq.dll


+ 0 - 2
WhiteNoise.Domain/Abstract/IPacketRepository.cs

@ -23,8 +23,6 @@
23 23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 25
// THE SOFTWARE.
26
27
using System;
28 26
using WhiteNoise.Domain.Entities;
29 27
30 28
namespace WhiteNoise.Domain.Abstract

+ 0 - 2
WhiteNoise.Domain/Abstract/IRepository.cs

@ -23,8 +23,6 @@
23 23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 25
// THE SOFTWARE.
26
27
using System;
28 26
using System.Collections.Generic;
29 27
30 28
namespace WhiteNoise.Domain.Abstract

+ 0 - 1
WhiteNoise.Domain/Concrete/DbPacketRepository.cs

@ -23,7 +23,6 @@
23 23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 25
// THE SOFTWARE.
26
27 26
using NHibernate;
28 27
using WhiteNoise.Domain.Abstract;
29 28
using WhiteNoise.Domain.Entities;

+ 4 - 5
WhiteNoise.Domain/Concrete/DbRepository.cs

@ -23,11 +23,10 @@
23 23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 25
// THE SOFTWARE.
26
27
using System;
28 26
using System.Collections.Generic;
29 27
using NHibernate;
30 28
using WhiteNoise.Domain.Abstract;
29
using WhiteNoise.Domain.Entities;
31 30
32 31
namespace WhiteNoise.Domain.Concrete
33 32
{
@ -35,6 +34,7 @@ namespace WhiteNoise.Domain.Concrete
35 34
	/// Database repository.
36 35
	/// </summary>
37 36
	public abstract class DbRepository<T> : IRepository<T>
37
		where T : DatabaseEntity
38 38
	{
39 39
		/// <summary>
40 40
		/// The NHibernate session.
@ -122,12 +122,11 @@ namespace WhiteNoise.Domain.Concrete
122 122
		/// <value>
123 123
		/// The collection.
124 124
		/// </value>
125
		public IList<T> Collection 
125
		public IList<T> Collection
126 126
		{
127 127
			get 
128 128
			{
129
				throw new NotImplementedException();
130
				//return this._session.QueryOver<T>.QueryOver<T>().List();
129
				return this._session.QueryOver<T>().List();
131 130
			}
132 131
		}
133 132
		

+ 37 - 0
WhiteNoise.Domain/Entities/DatabaseEntity.cs

@ -0,0 +1,37 @@
1
// 
2
// DatabaseEntity.cs
3
//  
4
// Author:
5
//       Bryan Allred <bryan.allred@gmail.com>
6
// 
7
// Copyright (c) 2011 Bryan Allred
8
// 
9
// Permission is hereby granted, free of charge, to any person obtaining a copy
10
// of this software and associated documentation files (the "Software"), to deal
11
// in the Software without restriction, including without limitation the rights
12
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
// copies of the Software, and to permit persons to whom the Software is
14
// furnished to do so, subject to the following conditions:
15
// 
16
// The above copyright notice and this permission notice shall be included in
17
// all copies or substantial portions of the Software.
18
// 
19
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25
// THE SOFTWARE.
26
27
namespace WhiteNoise.Domain.Entities
28
{
29
	/// <summary>
30
	/// Database entity.
31
	/// </summary>
32
	public abstract class DatabaseEntity
33
	{
34
		// Stub.
35
	}
36
}
37

+ 2 - 4
WhiteNoise.Domain/Entities/Packet.cs

@ -24,14 +24,12 @@
24 24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 25
// THE SOFTWARE.
26 26
27
using System;
28
29 27
namespace WhiteNoise.Domain.Entities
30 28
{
31 29
	/// <summary>
32 30
	/// Packet.
33 31
	/// </summary>
34
	public class Packet
32
	public class Packet : DatabaseEntity
35 33
	{
36 34
		/// <summary>
37 35
		/// Gets or sets the identifier.
@ -39,7 +37,7 @@ namespace WhiteNoise.Domain.Entities
39 37
		/// <value>
40 38
		/// The identifier.
41 39
		/// </value>
42
		public virtual int Id { get; internal set; }
40
		public virtual int Id { get; set; }
43 41
		
44 42
		/// <summary>
45 43
		/// Gets or sets the type.

+ 4 - 4
WhiteNoise.Domain/Mapping/PacketMap.cs

@ -23,8 +23,6 @@
23 23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 25
// THE SOFTWARE.
26
27
using System;
28 26
using FluentNHibernate.Mapping;
29 27
using WhiteNoise.Domain.Entities;
30 28
@ -41,9 +39,11 @@ namespace WhiteNoise.Domain.Mapping
41 39
		public PacketMap()
42 40
		{
43 41
			this.Table("packet");
44
			//this.LazyLoad();
42
			this.LazyLoad();
43
			
45 44
			this.Id(x => x.Id, "id")
46
				.GeneratedBy.Identity();
45
				.CustomSqlType("Serial")
46
				.GeneratedBy.Native();
47 47
			
48 48
			this.Map(x => x.Type, "type")
49 49
				.Not.Nullable();

+ 3 - 2
WhiteNoise.Domain/NHibernate/NHibernateConfiguration.cs

@ -23,7 +23,6 @@
23 23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 25
// THE SOFTWARE.
26
27 26
using FluentNHibernate.Cfg;
28 27
using FluentNHibernate.Cfg.Db;
29 28
using NHibernate;
@ -126,8 +125,10 @@ namespace WhiteNoise.Domain.NHibernate
126 125
                .Database(CreateDatabaseConfiguration(this.connectionString, this.provider))
127 126
                .Mappings(m => m.FluentMappings.AddFromAssemblyOf<NHibernateConfiguration>())
128 127
                .BuildConfiguration();
129
128
			
129
			// Update the schema.
130 130
            new SchemaUpdate(configuration).Execute(true, true);
131
			
131 132
            return configuration.BuildSessionFactory();
132 133
        }
133 134
    }

+ 1 - 0
WhiteNoise.Domain/WhiteNoise.Domain.csproj

@ -47,6 +47,7 @@
47 47
    <Compile Include="Concrete\DbPacketRepository.cs" />
48 48
    <Compile Include="Concrete\DbRepository.cs" />
49 49
    <Compile Include="Mapping\PacketMap.cs" />
50
    <Compile Include="Entities\DatabaseEntity.cs" />
50 51
  </ItemGroup>
51 52
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
52 53
  <ItemGroup>

+ 16 - 3
WhiteNoise.Listen/DeviceWorker.cs

@ -23,16 +23,15 @@
23 23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 25
// THE SOFTWARE.
26
27 26
using System;
28 27
using System.Collections.Generic;
28
using System.ComponentModel;
29 29
using System.Diagnostics;
30 30
using System.IO;
31 31
using SharpPcap;
32 32
using SharpPcap.AirPcap;
33 33
using SharpPcap.LibPcap;
34 34
using SharpPcap.WinPcap;
35
using System.ComponentModel;
36 35
37 36
namespace WhiteNoise.Listen
38 37
{
@ -41,7 +40,14 @@ namespace WhiteNoise.Listen
41 40
	/// </summary>
42 41
	public class DeviceWorker : BackgroundWorker
43 42
	{
43
		/// <summary>
44
		/// The file to dump information.
45
		/// </summary>
44 46
		private static FileInfo _file;
47
		
48
		/// <summary>
49
		/// The devices used for capturing packets.
50
		/// </summary>
45 51
		private CaptureDeviceList _devices;
46 52
		
47 53
		/// <summary>
@ -119,7 +125,7 @@ namespace WhiteNoise.Listen
119 125
			{
120 126
				this._devices = CaptureDeviceList.Instance;
121 127
				
122
								// Make a pretty list of devices.
128
				// Make a pretty list of devices.
123 129
				for (int i = 0; i < this._devices.Count; i++)
124 130
				{
125 131
					this.Devices.Add(
@ -206,8 +212,15 @@ namespace WhiteNoise.Listen
206 212
			}
207 213
		}
208 214
		
215
		/// <summary>
216
		/// Raises the do work event.
217
		/// </summary>
218
		/// <param name='e'>
219
		/// Work event arguments.
220
		/// </param>
209 221
		protected override void OnDoWork (DoWorkEventArgs e)
210 222
		{
223
			// TODO: Add the working portion (possibly pull from previous areas).
211 224
			base.OnDoWork (e);
212 225
		}
213 226
		

+ 35 - 21
WhiteNoise.Test/Domain/Concrete/DbPacketRepositoryTests.cs

@ -23,10 +23,10 @@
23 23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 25
// THE SOFTWARE.
26
27 26
using System;
28 27
using System.Collections.Generic;
29 28
using System.Linq;
29
using FluentNHibernate.Testing;
30 30
using NHibernate;
31 31
using NUnit.Framework;
32 32
using WhiteNoise.Domain.Abstract;
@ -60,34 +60,30 @@ namespace WhiteNoise.Test.Domain.Concrete
60 60
			};
61 61
		}
62 62
		
63
		/// <summary>
64
		/// Determines whether this instance can add packet.
65
		/// </summary>
66
		/// <returns>
67
		/// <c>true</c> if this instance can add packet; otherwise, <c>false</c>.
68
		/// </returns>
63 69
		[Test]
64 70
		public void CanAddPacket()
65 71
		{
66
			var item = new Packet() { Type = "Type4", Data = new byte[] { } };
67
			
68 72
			using (ISession session = this.SessionFactory.OpenSession())
69 73
			{
70
				IPacketRepository repository = new DbPacketRepository(session);
71
				repository.Add(item);
72
			}
73
			
74
			// Use a different session to properly test the transaction.
75
			using (ISession session = this.SessionFactory.OpenSession())
76
			{
77
				var fromDatabase = session.Get<Packet>(item.Id);
78
				
79
				Assert.That(fromDatabase, Is.Not.Null);
80
				Assert.That(fromDatabase, Is.Not.SameAs(item));
81
				Assert.That(fromDatabase, Is.EqualTo(item.Type));
74
				new PersistenceSpecification<Packet>(session)
75
			        .CheckProperty(c => c.Type, "Type4")
76
			        .CheckProperty(c => c.Data, new byte[] { })
77
			        .VerifyTheMappings();
82 78
			}
83 79
		}
84 80
		
85
		[Test]
86
		public void CanDetermineEqualityOfPackets()
87
		{
88
			throw new NotImplementedException();
89
		}
90
		
81
		/// <summary>
82
		/// Determines whether this instance can fetch repository.
83
		/// </summary>
84
		/// <returns>
85
		/// <c>true</c> if this instance can fetch repository; otherwise, <c>false</c>.
86
		/// </returns>
91 87
		[Test]
92 88
		public void CanFetchRepository()
93 89
		{
@ -105,6 +101,12 @@ namespace WhiteNoise.Test.Domain.Concrete
105 101
			}
106 102
		}
107 103
		
104
		/// <summary>
105
		/// Determines whether this instance can find by identifier.
106
		/// </summary>
107
		/// <returns>
108
		/// <c>true</c> if this instance can find by identifier; otherwise, <c>false</c>.
109
		/// </returns>
108 110
		[Test]
109 111
		public void CanFindById()
110 112
		{
@ -121,6 +123,12 @@ namespace WhiteNoise.Test.Domain.Concrete
121 123
			}
122 124
		}
123 125
		
126
		/// <summary>
127
		/// Determines whether this instance can remove packet.
128
		/// </summary>
129
		/// <returns>
130
		/// <c>true</c> if this instance can remove packet; otherwise, <c>false</c>.
131
		/// </returns>
124 132
		[Test]
125 133
		public void CanRemovePacket()
126 134
		{
@ -140,6 +148,12 @@ namespace WhiteNoise.Test.Domain.Concrete
140 148
			}
141 149
		}
142 150
		
151
		/// <summary>
152
		/// Determines whether this instance can update packet.
153
		/// </summary>
154
		/// <returns>
155
		/// <c>true</c> if this instance can update packet; otherwise, <c>false</c>.
156
		/// </returns>
143 157
		[Test]
144 158
		public void CanUpdatePacket()
145 159
		{

+ 14 - 21
WhiteNoise.Test/Domain/Concrete/DbRepositoryTests.cs

@ -23,7 +23,6 @@
23 23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 25
// THE SOFTWARE.
26
27 26
using System.Collections.Generic;
28 27
using FluentNHibernate.Cfg;
29 28
using NHibernate;
@ -36,9 +35,8 @@ using WhiteNoise.Test.TestHelpers;
36 35
namespace WhiteNoise.Test.Domain.Concrete
37 36
{
38 37
	/// <summary>
39
	/// Database repository tests.
38
	/// Base database repository tests.
40 39
	/// </summary>
41
	[TestFixture]
42 40
	public abstract class DbRepositoryTests<T>
43 41
	{
44 42
		/// <summary>
@ -62,33 +60,28 @@ namespace WhiteNoise.Test.Domain.Concrete
62 60
		/// </value>
63 61
		public ICollection<T> Items { get; set; }
64 62
		
65
		/// <summary>
66
		/// Setups the contex.
67
		/// </summary>
68
		[SetUp]
69
		public void SetupContex()
70
		{
71
			new SchemaExport(this._configuration).Execute(false, true, false);
72
			this.LoadData();
73
		}
74
		
75 63
		/// <summary>
76 64
		/// Tests the fixture set up.
77 65
		/// </summary>
78 66
		[TestFixtureSetUp]
79 67
		public void TestFixtureSetUp()
80 68
		{
81
			var rawConfig = new Configuration();
82
			
83
			// NOTE: Removed but left in place as a reminder.
84
            //rawConfig.SetNamingStrategy(new MsSqlNamingStrategy());
85
86
            this._configuration = Fluently.Configure(rawConfig)
69
			this._configuration = Fluently.Configure()
87 70
                .Database(NHibernateConfiguration.CreateDatabaseConfiguration(Global.ConnectionString, Global.DatabaseProvider))
88 71
                .Mappings(m => m.FluentMappings.AddFromAssemblyOf<NHibernateConfiguration>())
89 72
                .BuildConfiguration();
90
91
            this.SessionFactory = this._configuration.BuildSessionFactory();
73
			
74
        	this.SessionFactory = this._configuration.BuildSessionFactory();
75
		}
76
		
77
		/// <summary>
78
		/// Setups the contex.
79
		/// </summary>
80
		[SetUp]
81
		public void SetupContex()
82
		{
83
			new SchemaExport(this._configuration).Execute(false, true, false);
84
			this.LoadData();
92 85
		}
93 86
		
94 87
		/// <summary>

+ 0 - 1
WhiteNoise.Test/Domain/NHibernate/SchemaTests.cs

@ -23,7 +23,6 @@
23 23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 25
// THE SOFTWARE.
26
27 26
using FluentNHibernate.Cfg;
28 27
using NHibernate.Cfg;
29 28
using NHibernate.Tool.hbm2ddl;

+ 1 - 3
WhiteNoise.Test/TestHelpers/Global.cs

@ -24,8 +24,6 @@
24 24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 25
// THE SOFTWARE.
26 26
27
using System;
28
29 27
namespace WhiteNoise.Test.TestHelpers
30 28
{
31 29
	/// <summary>
@ -36,7 +34,7 @@ namespace WhiteNoise.Test.TestHelpers
36 34
		/// <summary>
37 35
		/// Constant connection string.
38 36
		/// </summary>
39
		public const string ConnectionString = @"Server=localhost;Database=test;User ID=postgres;Password=password;"; //@"Data Source=file:test.db";
37
		public const string ConnectionString = @"Server=localhost;Database=test;User ID=postgres;Password=password;";
40 38
		
41 39
		/// <summary>
42 40
		/// Constant database provider.

+ 3 - 1
WhiteNoise.Test/WhiteNoise.Test.csproj

@ -45,7 +45,6 @@
45 45
    <Reference Include="SharpPcap">
46 46
      <HintPath>..\Resources\SharpPcap.dll</HintPath>
47 47
    </Reference>
48
    <Reference Include="Mono.Data.Sqlite" />
49 48
    <Reference Include="nunit.framework">
50 49
      <HintPath>..\Resources\nunit.framework.dll</HintPath>
51 50
    </Reference>
@ -59,6 +58,9 @@
59 58
      <HintPath>..\Resources\Npgsql.dll</HintPath>
60 59
    </Reference>
61 60
    <Reference Include="Mono.Security" />
61
    <Reference Include="NHibernate.ByteCode.Castle">
62
      <HintPath>..\Resources\NHibernate.ByteCode.Castle.dll</HintPath>
63
    </Reference>
62 64
  </ItemGroup>
63 65
  <ItemGroup>
64 66
    <Compile Include="AssemblyInfo.cs" />

+ 1 - 0
WhiteNoise.sln

@ -15,6 +15,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Resources", "Resources", "{
15 15
		Resources\Npgsql.dll.mdb = Resources\Npgsql.dll.mdb
16 16
		Resources\Npgsql.xml = Resources\Npgsql.xml
17 17
		Resources\policy.2.0.Npgsql.dll = Resources\policy.2.0.Npgsql.dll
18
		Resources\NHibernate.ByteCode.Castle.dll = Resources\NHibernate.ByteCode.Castle.dll
18 19
	EndProjectSection
19 20
EndProject
20 21
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhiteNoise.Test", "WhiteNoise.Test\WhiteNoise.Test.csproj", "{AEA071CB-7205-4054-A60F-8D5FD82BE80D}"