Skip to content

Commit a258dba

Browse files
committed
Integration tests added.
1 parent 6aa7478 commit a258dba

File tree

4 files changed

+269
-1
lines changed

4 files changed

+269
-1
lines changed

NeoClient.Tests/IntegrationTests.cs

+221
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,221 @@
1+
using FluentAssertions;
2+
using Neo4j.Driver.V1;
3+
using System;
4+
using System.Collections.Generic;
5+
using System.Linq;
6+
using Xunit;
7+
8+
namespace NeoClient.Tests
9+
{
10+
//public abstract class BaseExample : IDisposable
11+
//{
12+
// protected IDriver Driver { set; get; }
13+
// protected const string Uri = Neo4jDefaultInstallation.BoltUri;
14+
// protected const string User = Neo4jDefaultInstallation.User;
15+
// protected const string Password = Neo4jDefaultInstallation.Password;
16+
17+
// protected BaseExample(ITestOutputHelper output, StandAloneIntegrationTestFixture fixture)
18+
// {
19+
// Output = output;
20+
// Driver = fixture.StandAlone.Driver;
21+
// }
22+
23+
// protected virtual void Dispose(bool isDisposing)
24+
// {
25+
// if (!isDisposing)
26+
// return;
27+
28+
// using (var session = Driver.Session())
29+
// {
30+
// session.Run("MATCH (n) DETACH DELETE n").Consume();
31+
// }
32+
// }
33+
34+
// public void Dispose()
35+
// {
36+
// Dispose(true);
37+
// }
38+
//}
39+
40+
public class User : EntityBase
41+
{
42+
public User() : base(label: "User") { }
43+
44+
public string FirstName { get; set; }
45+
public string LastName { get; set; }
46+
public string Email { get; set; }
47+
}
48+
49+
public class IntegrationTests
50+
{
51+
#region Variables
52+
const string URL = "bolt://localhost:7687";
53+
const string USER = "neo4j";
54+
const string PASSWORD = "changeme";
55+
static readonly Config CONFIG = Config.Builder
56+
.WithEncryptionLevel(EncryptionLevel.None)
57+
.ToConfig();
58+
#endregion
59+
60+
[Fact]
61+
public void ServiceUnavailableExceptionError()
62+
{
63+
using (var client = new NeoClient("bolt://localhost:1111", USER, PASSWORD))
64+
{
65+
client.Connect();
66+
67+
var exception = Record.Exception(() => client.Ping());
68+
69+
exception.Should().BeOfType<ServiceUnavailableException>();
70+
}
71+
}
72+
73+
[Fact]
74+
public void AuthenticationErrorIfWrongAuthToken()
75+
{
76+
using (var client = new NeoClient(URL, "fake", "fake", CONFIG))
77+
{
78+
client.Connect();
79+
80+
var exception = Record.Exception(() => client.Ping());
81+
82+
exception.Should().BeOfType<AuthenticationException>();
83+
}
84+
}
85+
86+
[Fact]
87+
public void CreateDriverWithBasicAuthenticationAndConfiguration()
88+
{
89+
using (var client = new NeoClient(URL, USER, PASSWORD, CONFIG))
90+
{
91+
client.Connect();
92+
93+
client.IsConnected.Should().BeTrue();
94+
}
95+
}
96+
97+
[Fact]
98+
public void ErrorToRunInvalidCypher()
99+
{
100+
using (var client = new NeoClient(URL, USER, PASSWORD, CONFIG))
101+
{
102+
client.Connect();
103+
104+
var exception = Record.Exception(() => client.RunCustomQuery("Invalid Cypher"));
105+
106+
exception
107+
.Should()
108+
.BeOfType<ClientException>();
109+
}
110+
}
111+
112+
[Fact]
113+
public void ShouldReportWrongScheme()
114+
{
115+
using (var client = new NeoClient("http://localhost", USER, PASSWORD, CONFIG))
116+
{
117+
var exception = Record.Exception(() => client.Connect());
118+
119+
exception.Should().BeOfType<NotSupportedException>();
120+
}
121+
}
122+
123+
[Fact]
124+
public void ShouldConnectAndPing()
125+
{
126+
using (var client = new NeoClient(URL, USER, PASSWORD, CONFIG))
127+
{
128+
client.Connect();
129+
130+
bool response = client.Ping();
131+
132+
response.Should().BeTrue();
133+
}
134+
}
135+
136+
[Fact]
137+
public void CreateDriverWithConnectionPool()
138+
{
139+
using (var client = new NeoClient(URL, USER, PASSWORD, Config.Builder
140+
.WithMaxConnectionLifetime(TimeSpan.FromMinutes(30))
141+
.WithMaxConnectionPoolSize(100)
142+
.WithConnectionAcquisitionTimeout(TimeSpan.FromMinutes(2))
143+
.WithEncryptionLevel(EncryptionLevel.None)
144+
.ToConfig()))
145+
{
146+
client.Connect();
147+
148+
client.IsConnected.Should().BeTrue();
149+
}
150+
}
151+
152+
[Fact]
153+
public void CreateNode()
154+
{
155+
using (var client = new NeoClient(URL, USER, PASSWORD, CONFIG))
156+
{
157+
client.Connect();
158+
159+
var user = new User { Email = "[email protected]", FirstName = "Oktay", LastName = "Kýr" };
160+
161+
client.Add(user);
162+
163+
client.IsConnected.Should().BeTrue();
164+
}
165+
}
166+
167+
[Fact]
168+
public void CreateLabel()
169+
{
170+
using (var client = new NeoClient(URL, USER, PASSWORD, CONFIG))
171+
{
172+
client.Connect();
173+
174+
var user = client.Add(new User { Email = "[email protected]", FirstName = "Oktay", LastName = "Kýr" });
175+
bool result = client.AddLabel(user.Uuid, "Father");
176+
177+
result.Should().BeTrue();
178+
}
179+
}
180+
181+
[Fact]
182+
public void GetNodeByUuid()
183+
{
184+
using (var client = new NeoClient(URL, USER, PASSWORD, CONFIG))
185+
{
186+
client.Connect();
187+
188+
var user = client.Add(new User { Email = "[email protected]", FirstName = "Oktay", LastName = "Kýr" });
189+
190+
User entity = client.GetByUuidWithRelatedNodes<User>(user.Uuid);
191+
192+
user.Should().BeEquivalentTo(entity);
193+
}
194+
}
195+
196+
[Fact]
197+
public void GetAllNodes()
198+
{
199+
using (var client = new NeoClient(URL, USER, PASSWORD, CONFIG))
200+
{
201+
client.Connect();
202+
203+
var userList = new List<User>();
204+
205+
for (int i = 0; i < 10; i++)
206+
{
207+
userList.Add(new User
208+
{
209+
Email = "[email protected]",
210+
FirstName = $"FakeFirstName{i}",
211+
LastName = $"FakeLastName{i}"
212+
});
213+
}
214+
215+
IList<User> entities = client.GetAll<User>();
216+
217+
entities.Should().NotBeEmpty();
218+
}
219+
}
220+
}
221+
}
+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
6+
<IsPackable>false</IsPackable>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<PackageReference Include="FluentAssertions" Version="5.10.3" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
12+
<PackageReference Include="xunit" Version="2.4.0" />
13+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
14+
<PackageReference Include="coverlet.collector" Version="1.2.0" />
15+
</ItemGroup>
16+
17+
<ItemGroup>
18+
<ProjectReference Include="..\NeoClient\NeoClient.csproj" />
19+
</ItemGroup>
20+
21+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
version: '3'
2+
3+
networks:
4+
neo4j-network:
5+
driver: bridge
6+
7+
services:
8+
neo4j:
9+
image: neo4j
10+
restart: unless-stopped
11+
ports:
12+
- 7474:7474
13+
- 6477:6477
14+
- 7687:7687
15+
environment:
16+
- NEO4J_AUTH=neo4j/changeme
17+
- NEO4J_dbms_connector_bolt_advertised__address='localhost:7687'
18+
- NEO4J_dbms_connector_bolt_tls__level=DISABLED
19+
networks:
20+
- neo4j-network

NeoClient.sln

+7-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.29926.136
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NeoClient", "NeoClient\NeoClient.csproj", "{05D81BC9-DA31-494A-AC8F-1622F5DCE6B5}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NeoClient", "NeoClient\NeoClient.csproj", "{05D81BC9-DA31-494A-AC8F-1622F5DCE6B5}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NeoClient.Tests", "NeoClient.Tests\NeoClient.Tests.csproj", "{A01064FD-2D40-4206-8824-F71EC4A3D7C2}"
79
EndProject
810
Global
911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -15,6 +17,10 @@ Global
1517
{05D81BC9-DA31-494A-AC8F-1622F5DCE6B5}.Debug|Any CPU.Build.0 = Debug|Any CPU
1618
{05D81BC9-DA31-494A-AC8F-1622F5DCE6B5}.Release|Any CPU.ActiveCfg = Release|Any CPU
1719
{05D81BC9-DA31-494A-AC8F-1622F5DCE6B5}.Release|Any CPU.Build.0 = Release|Any CPU
20+
{A01064FD-2D40-4206-8824-F71EC4A3D7C2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
21+
{A01064FD-2D40-4206-8824-F71EC4A3D7C2}.Debug|Any CPU.Build.0 = Debug|Any CPU
22+
{A01064FD-2D40-4206-8824-F71EC4A3D7C2}.Release|Any CPU.ActiveCfg = Release|Any CPU
23+
{A01064FD-2D40-4206-8824-F71EC4A3D7C2}.Release|Any CPU.Build.0 = Release|Any CPU
1824
EndGlobalSection
1925
GlobalSection(SolutionProperties) = preSolution
2026
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)