Browse Source

All tests green for database functionality.

bmallred 13 years ago
parent
commit
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
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
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
24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25
// THE SOFTWARE.
25
// THE SOFTWARE.
26
27
using System;
28
using WhiteNoise.Domain.Entities;
26
using WhiteNoise.Domain.Entities;
29
27
30
namespace WhiteNoise.Domain.Abstract
28
namespace WhiteNoise.Domain.Abstract

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

23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
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
24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25
// THE SOFTWARE.
25
// THE SOFTWARE.
26
27
using System;
28
using System.Collections.Generic;
26
using System.Collections.Generic;
29
27
30
namespace WhiteNoise.Domain.Abstract
28
namespace WhiteNoise.Domain.Abstract

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

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

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

23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
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
24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25
// THE SOFTWARE.
25
// THE SOFTWARE.
26
27
using System;
28
using System.Collections.Generic;
26
using System.Collections.Generic;
29
using NHibernate;
27
using NHibernate;
30
using WhiteNoise.Domain.Abstract;
28
using WhiteNoise.Domain.Abstract;
29
using WhiteNoise.Domain.Entities;
31
30
32
namespace WhiteNoise.Domain.Concrete
31
namespace WhiteNoise.Domain.Concrete
33
{
32
{
35
	/// Database repository.
34
	/// Database repository.
36
	/// </summary>
35
	/// </summary>
37
	public abstract class DbRepository<T> : IRepository<T>
36
	public abstract class DbRepository<T> : IRepository<T>
37
		where T : DatabaseEntity
38
	{
38
	{
39
		/// <summary>
39
		/// <summary>
40
		/// The NHibernate session.
40
		/// The NHibernate session.
122
		/// <value>
122
		/// <value>
123
		/// The collection.
123
		/// The collection.
124
		/// </value>
124
		/// </value>
125
		public IList<T> Collection 
125
		public IList<T> Collection
126
		{
126
		{
127
			get 
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

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

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

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

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

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

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

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

+ 16 - 3
WhiteNoise.Listen/DeviceWorker.cs

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

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

23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
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
24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25
// THE SOFTWARE.
25
// THE SOFTWARE.
26
27
using System;
26
using System;
28
using System.Collections.Generic;
27
using System.Collections.Generic;
29
using System.Linq;
28
using System.Linq;
29
using FluentNHibernate.Testing;
30
using NHibernate;
30
using NHibernate;
31
using NUnit.Framework;
31
using NUnit.Framework;
32
using WhiteNoise.Domain.Abstract;
32
using WhiteNoise.Domain.Abstract;
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
		[Test]
69
		[Test]
64
		public void CanAddPacket()
70
		public void CanAddPacket()
65
		{
71
		{
66
			var item = new Packet() { Type = "Type4", Data = new byte[] { } };
67
			
68
			using (ISession session = this.SessionFactory.OpenSession())
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
		[Test]
87
		[Test]
92
		public void CanFetchRepository()
88
		public void CanFetchRepository()
93
		{
89
		{
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
		[Test]
110
		[Test]
109
		public void CanFindById()
111
		public void CanFindById()
110
		{
112
		{
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
		[Test]
132
		[Test]
125
		public void CanRemovePacket()
133
		public void CanRemovePacket()
126
		{
134
		{
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
		[Test]
157
		[Test]
144
		public void CanUpdatePacket()
158
		public void CanUpdatePacket()
145
		{
159
		{

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

23
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
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
24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25
// THE SOFTWARE.
25
// THE SOFTWARE.
26
27
using System.Collections.Generic;
26
using System.Collections.Generic;
28
using FluentNHibernate.Cfg;
27
using FluentNHibernate.Cfg;
29
using NHibernate;
28
using NHibernate;
36
namespace WhiteNoise.Test.Domain.Concrete
35
namespace WhiteNoise.Test.Domain.Concrete
37
{
36
{
38
	/// <summary>
37
	/// <summary>
39
	/// Database repository tests.
38
	/// Base database repository tests.
40
	/// </summary>
39
	/// </summary>
41
	[TestFixture]
42
	public abstract class DbRepositoryTests<T>
40
	public abstract class DbRepositoryTests<T>
43
	{
41
	{
44
		/// <summary>
42
		/// <summary>
62
		/// </value>
60
		/// </value>
63
		public ICollection<T> Items { get; set; }
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
		/// <summary>
63
		/// <summary>
76
		/// Tests the fixture set up.
64
		/// Tests the fixture set up.
77
		/// </summary>
65
		/// </summary>
78
		[TestFixtureSetUp]
66
		[TestFixtureSetUp]
79
		public void TestFixtureSetUp()
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
                .Database(NHibernateConfiguration.CreateDatabaseConfiguration(Global.ConnectionString, Global.DatabaseProvider))
70
                .Database(NHibernateConfiguration.CreateDatabaseConfiguration(Global.ConnectionString, Global.DatabaseProvider))
88
                .Mappings(m => m.FluentMappings.AddFromAssemblyOf<NHibernateConfiguration>())
71
                .Mappings(m => m.FluentMappings.AddFromAssemblyOf<NHibernateConfiguration>())
89
                .BuildConfiguration();
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
		/// <summary>
87
		/// <summary>

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

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

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

24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25
// THE SOFTWARE.
25
// THE SOFTWARE.
26
26
27
using System;
28
29
namespace WhiteNoise.Test.TestHelpers
27
namespace WhiteNoise.Test.TestHelpers
30
{
28
{
31
	/// <summary>
29
	/// <summary>
36
		/// <summary>
34
		/// <summary>
37
		/// Constant connection string.
35
		/// Constant connection string.
38
		/// </summary>
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
		/// <summary>
39
		/// <summary>
42
		/// Constant database provider.
40
		/// Constant database provider.

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

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

+ 1 - 0
WhiteNoise.sln

15
		Resources\Npgsql.dll.mdb = Resources\Npgsql.dll.mdb
15
		Resources\Npgsql.dll.mdb = Resources\Npgsql.dll.mdb
16
		Resources\Npgsql.xml = Resources\Npgsql.xml
16
		Resources\Npgsql.xml = Resources\Npgsql.xml
17
		Resources\policy.2.0.Npgsql.dll = Resources\policy.2.0.Npgsql.dll
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
	EndProjectSection
19
	EndProjectSection
19
EndProject
20
EndProject
20
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhiteNoise.Test", "WhiteNoise.Test\WhiteNoise.Test.csproj", "{AEA071CB-7205-4054-A60F-8D5FD82BE80D}"
21
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WhiteNoise.Test", "WhiteNoise.Test\WhiteNoise.Test.csproj", "{AEA071CB-7205-4054-A60F-8D5FD82BE80D}"