forked from Azure/azure-functions-core-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKubernetesHelperUnitTests.cs
58 lines (53 loc) · 1.86 KB
/
KubernetesHelperUnitTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
using Azure.Functions.Cli.Kubernetes;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
using Xunit;
namespace Azure.Functions.Cli.Tests
{
public class KubernetesHelperUnitTests
{
[Theory]
[InlineData("normalname", true)]
[InlineData("name-with-dashes", true)]
[InlineData("name-with-numbers-938-234", true)]
[InlineData("name with spaces", false)]
[InlineData("NameWithCapital", false)]
[InlineData("name@something", false)]
public void ValidateKubernetesNames(string name, bool isValid)
{
try
{
KubernetesHelper.ValidateKubernetesName(name);
}
catch
{
if (isValid)
{
throw;
}
}
}
[Fact]
public void PopulateMetadataDictionary_CorrectlyPopulatesRabbitMQMetadata()
{
string jsonText = @"
{
""type"": ""rabbitMQTrigger"",
""connectionStringSetting"": ""RabbitMQConnection"",
""queueName"": ""myQueue"",
""name"": ""message""
}";
JToken jsonObj = JToken.Parse(jsonText);
IDictionary<string, string> metadata = KubernetesHelper.PopulateMetadataDictionary(jsonObj);
Assert.Equal(4, metadata.Count);
Assert.True(metadata.ContainsKey("type"));
Assert.True(metadata.ContainsKey("host"));
Assert.True(metadata.ContainsKey("name"));
Assert.True(metadata.ContainsKey("queueName"));
Assert.Equal("rabbitMQTrigger", metadata["type"]);
Assert.Equal("RabbitMQConnection", metadata["host"]);
Assert.Equal("message", metadata["name"]);
Assert.Equal("myQueue", metadata["queueName"]);
}
}
}