-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #124 from martincostello/v322
Sync fixes to release/3xx
- Loading branch information
Showing
15 changed files
with
298 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"sdk": { | ||
"version": "2.1.402" | ||
"version": "2.1.403" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
src/JustEat.StatsD.Tests/EndpointLookups/DnsLookupIpEndpointSourceTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
using System.Net; | ||
using System.Net.Sockets; | ||
using Shouldly; | ||
using Xunit; | ||
|
||
namespace JustEat.StatsD.EndpointLookups | ||
{ | ||
public static class DnsLookupIpEndpointSourceTests | ||
{ | ||
[Fact] | ||
public static void GetEndpointPrefersIPV4WhenHostnameIsLocalhost() | ||
{ | ||
// Arrange | ||
var target = new DnsLookupIpEndpointSource("localhost", 8125); | ||
|
||
// Act | ||
IPEndPoint actual = target.GetEndpoint(); | ||
|
||
// Assert | ||
actual.ShouldNotBeNull(); | ||
actual.AddressFamily.ShouldBe(AddressFamily.InterNetwork); | ||
actual.Address.ShouldBe(IPAddress.Parse("127.0.0.1")); | ||
actual.Port.ShouldBe(8125); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
using System; | ||
using System.Net.Sockets; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using Newtonsoft.Json.Linq; | ||
using Shouldly; | ||
using Xunit; | ||
|
||
namespace JustEat.StatsD | ||
{ | ||
public static class IntegrationTests | ||
{ | ||
[SkippableFact] | ||
public static async Task Can_Send_Metrics_To_StatsD() | ||
{ | ||
Skip.If(Environment.GetEnvironmentVariable("CI") == null, "By default, this test is only run during continuous integration."); | ||
|
||
// Arrange | ||
var config = new StatsDConfiguration | ||
{ | ||
Host = "localhost", | ||
Prefix = Guid.NewGuid().ToString().Replace("-", string.Empty) | ||
}; | ||
|
||
var publisher = new StatsDPublisher(config); | ||
|
||
// Act - Create a counter | ||
publisher.Increment("apple"); | ||
|
||
// Act - Create and change a counter | ||
publisher.Increment("bear"); // 1 | ||
publisher.Increment(10, "bear"); // 11 | ||
publisher.Increment(10, 0, "bear"); // 11 | ||
publisher.Decrement("bear"); // 10 | ||
publisher.Decrement(5, "bear"); // 5 | ||
publisher.Decrement(5, 0, "bear"); // 5 | ||
|
||
// Act - Mark an event (which is a counter) | ||
publisher.MarkEvent("fish"); | ||
|
||
// Act - Create a gauge | ||
publisher.Gauge(3.141, "circle"); | ||
|
||
// Act - Create and change a gauge | ||
publisher.Gauge(10, "dog"); | ||
publisher.Gauge(42, "dog"); | ||
|
||
// Act - Create a timer | ||
publisher.Timing(123, "elephant"); | ||
publisher.Timing(TimeSpan.FromSeconds(2), "fox"); | ||
publisher.Timing(456, 1, "goose"); | ||
publisher.Timing(TimeSpan.FromSeconds(3.5), 1, "hen"); | ||
|
||
// Act - Increment multiple counters | ||
publisher.Increment(7, 1, "green", "red"); // 7 | ||
publisher.Increment(2, 0, "green", "red"); // 7 | ||
publisher.Decrement(1, 0, "red", "green"); // 7 | ||
publisher.Decrement(4, 1, "red", "green"); // 3 | ||
|
||
// Assert | ||
var result = await SendCommandAsync("counters"); | ||
result.Value<int>(config.Prefix + ".apple").ShouldBe(1); | ||
result.Value<int>(config.Prefix + ".bear").ShouldBe(5); | ||
result.Value<int>(config.Prefix + ".fish").ShouldBe(1); | ||
result.Value<int>(config.Prefix + ".green").ShouldBe(3); | ||
result.Value<int>(config.Prefix + ".red").ShouldBe(3); | ||
|
||
result = await SendCommandAsync("gauges"); | ||
result.Value<double>(config.Prefix + ".circle").ShouldBe(3.141); | ||
result.Value<int>(config.Prefix + ".dog").ShouldBe(42); | ||
|
||
result = await SendCommandAsync("timers"); | ||
result[config.Prefix + ".elephant"].Values<int>().ShouldBe(new[] { 123 }); | ||
result[config.Prefix + ".fox"].Values<int>().ShouldBe(new[] { 2000 }); | ||
result[config.Prefix + ".goose"].Values<int>().ShouldBe(new[] { 456 }); | ||
result[config.Prefix + ".hen"].Values<int>().ShouldBe(new[] { 3500 }); | ||
} | ||
|
||
private static async Task<JObject> SendCommandAsync(string command) | ||
{ | ||
string json; | ||
|
||
using (var client = new TcpClient()) | ||
{ | ||
client.Connect("localhost", 8126); | ||
|
||
byte[] input = Encoding.UTF8.GetBytes(command); | ||
byte[] output = new byte[client.ReceiveBufferSize]; | ||
|
||
int bytesRead; | ||
|
||
using (var stream = client.GetStream()) | ||
{ | ||
await stream.WriteAsync(input); | ||
bytesRead = await stream.ReadAsync(output); | ||
} | ||
|
||
output = output.AsSpan(0, bytesRead).ToArray(); | ||
|
||
json = Encoding.UTF8.GetString(output).Replace("END", string.Empty); | ||
} | ||
|
||
return JObject.Parse(json); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
89 changes: 89 additions & 0 deletions
89
src/JustEat.StatsD.Tests/StringBasedStatsDPublisherTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
using System; | ||
using Moq; | ||
using Xunit; | ||
|
||
namespace JustEat.StatsD | ||
{ | ||
public static class StringBasedStatsDPublisherTests | ||
{ | ||
[Fact] | ||
public static void Decrement_Sends_Multiple_Metrics() | ||
{ | ||
// Arrange | ||
var mock = new Mock<IStatsDTransport>(); | ||
|
||
var config = new StatsDConfiguration | ||
{ | ||
Prefix = "red", | ||
}; | ||
|
||
var publisher = new StringBasedStatsDPublisher(config, mock.Object); | ||
|
||
// Act | ||
publisher.Decrement(10, 1, "white", "blue"); | ||
|
||
// Assert | ||
mock.Verify((p) => p.Send("red.white:-10|c"), Times.Once()); | ||
mock.Verify((p) => p.Send("red.blue:-10|c"), Times.Once()); | ||
} | ||
|
||
[Fact] | ||
public static void Increment_Sends_Multiple_Metrics() | ||
{ | ||
// Arrange | ||
var mock = new Mock<IStatsDTransport>(); | ||
|
||
var config = new StatsDConfiguration | ||
{ | ||
Prefix = "red", | ||
}; | ||
|
||
var publisher = new StringBasedStatsDPublisher(config, mock.Object); | ||
|
||
// Act | ||
publisher.Increment(10, 1, "white", "blue"); | ||
|
||
// Assert | ||
mock.Verify((p) => p.Send("red.white:10|c"), Times.Once()); | ||
mock.Verify((p) => p.Send("red.blue:10|c"), Times.Once()); | ||
} | ||
|
||
[Fact] | ||
public static void Metrics_Not_Sent_If_Array_Is_Null_Or_Empty() | ||
{ | ||
// Arrange | ||
var mock = new Mock<IStatsDTransport>(); | ||
var config = new StatsDConfiguration(); | ||
|
||
var publisher = new StringBasedStatsDPublisher(config, mock.Object); | ||
|
||
// Act | ||
publisher.Decrement(1, 1, null as string[]); | ||
publisher.Increment(1, 1, null as string[]); | ||
publisher.Decrement(1, 1, Array.Empty<string>()); | ||
publisher.Increment(1, 1, Array.Empty<string>()); | ||
publisher.Decrement(1, 1, new[] { string.Empty }); | ||
publisher.Increment(1, 1, new[] { string.Empty }); | ||
|
||
// Assert | ||
mock.Verify((p) => p.Send(It.IsAny<string>()), Times.Never()); | ||
} | ||
|
||
[Fact] | ||
public static void Metrics_Not_Sent_If_No_Metrics() | ||
{ | ||
// Arrange | ||
var mock = new Mock<IStatsDTransport>(); | ||
var config = new StatsDConfiguration(); | ||
|
||
var publisher = new StringBasedStatsDPublisher(config, mock.Object); | ||
|
||
// Act | ||
publisher.Decrement(1, 0, new[] { "foo" }); | ||
publisher.Increment(1, 0, new[] { "bar" }); | ||
|
||
// Assert | ||
mock.Verify((p) => p.Send(It.IsAny<string>()), Times.Never()); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
graphiteHost: "", | ||
port: 8125, | ||
backends: [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.