-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathFunction.cs
More file actions
260 lines (241 loc) · 9.48 KB
/
Function.cs
File metadata and controls
260 lines (241 loc) · 9.48 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.Azure.WebJobs.Host;
using System;
using System.Globalization;
namespace Indigo.Functions.Configuration.IntegrationTests.Target
{
public static class Function
{
[FunctionName("NoSettingNameFunction")]
public static IActionResult NoSettingNameFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "NoSettingName")] HttpRequest req,
[Config] string value,
TraceWriter log)
{
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("BoolFunction")]
public static IActionResult BoolFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "Bool")] HttpRequest req,
[Config("Bool")] bool value,
TraceWriter log)
{
if (value != true)
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("ByteFunction")]
public static IActionResult ByteFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "Byte")] HttpRequest req,
[Config("Byte")] Byte value,
TraceWriter log)
{
if (value != Byte.MaxValue)
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("SByteFunction")]
public static IActionResult SByteFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "SByte")] HttpRequest req,
[Config("SByte")] SByte value,
TraceWriter log)
{
if (value != SByte.MaxValue)
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("CharFunction")]
public static IActionResult CharFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "Char")] HttpRequest req,
[Config("Char")] Char value,
TraceWriter log)
{
if (value != 'X')
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("DateTimeFunction")]
public static IActionResult DateTimeFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "DateTime")] HttpRequest req,
[Config("DateTime")] DateTime value,
TraceWriter log)
{
if (value != DateTime.Parse("2018-4-13 14:00:00", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal))
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("DateTimeOffsetFunction")]
public static IActionResult DateTimeOffsetFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "DateTimeOffset")] HttpRequest req,
[Config("DateTimeOffset")] DateTimeOffset value,
TraceWriter log)
{
if (value != DateTimeOffset.Parse("2018-4-13 14:00:00", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal))
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("DecimalFunction")]
public static IActionResult DecimalFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "Decimal")] HttpRequest req,
[Config("Decimal")] Decimal value,
TraceWriter log)
{
if (value != Decimal.MaxValue)
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("DoubleFunction")]
public static IActionResult DoubleFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "Double")] HttpRequest req,
[Config("Double")] Double value,
TraceWriter log)
{
if (value != 12345.67890123456)
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("FloatFunction")]
public static IActionResult FloatFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "Float")] HttpRequest req,
[Config("Float")] float value,
TraceWriter log)
{
if (value != 123.456789f)
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("GuidFunction")]
public static IActionResult GuidFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "Guid")] HttpRequest req,
[Config("Guid")] Guid value,
TraceWriter log)
{
if (value != Guid.Parse("e20f2d60-3174-433f-a817-1131e9338978"))
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("IntFunction")]
public static IActionResult IntFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "Int")] HttpRequest req,
[Config("Int")] int value,
TraceWriter log)
{
if (value != int.MaxValue)
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("UintFunction")]
public static IActionResult UintFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "Uint")] HttpRequest req,
[Config("Uint")] uint value,
TraceWriter log)
{
if (value != uint.MaxValue)
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("LongFunction")]
public static IActionResult LongFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "Long")] HttpRequest req,
[Config("Long")] long value,
TraceWriter log)
{
if (value != long.MaxValue)
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("ULongFunction")]
public static IActionResult ULongFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "ULong")] HttpRequest req,
[Config("ULong")] ulong value,
TraceWriter log)
{
if (value != ulong.MaxValue)
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("ShortFunction")]
public static IActionResult ShortFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "Short")] HttpRequest req,
[Config("Short")] short value,
TraceWriter log)
{
if (value != short.MaxValue)
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("UShortFunction")]
public static IActionResult UShortFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "UShort")] HttpRequest req,
[Config("UShort")] ushort value,
TraceWriter log)
{
if (value != ushort.MaxValue)
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("StringFunction")]
public static IActionResult StringFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "String")] HttpRequest req,
[Config("String")] String value,
TraceWriter log)
{
if (value != "abc")
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
[FunctionName("TimespanFunction")]
public static IActionResult TimeSpanFunction(
[HttpTrigger(AuthorizationLevel.Function, "GET", Route = "TimeSpan")] HttpRequest req,
[Config("TimeSpan")] TimeSpan value,
TraceWriter log)
{
if (value !=TimeSpan
.FromDays(6)
.Add(TimeSpan.FromHours(12))
.Add(TimeSpan.FromMinutes(14))
.Add(TimeSpan.FromSeconds(45)))
{
throw new ArgumentException("Couldn't parse the value");
}
return new OkObjectResult($"Parsed {value}");
}
}
}