-
-
Notifications
You must be signed in to change notification settings - Fork 517
/
Copy pathSystem.cs
408 lines (372 loc) · 10.2 KB
/
System.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
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
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Bogus.Bson;
namespace Bogus.DataSets;
/// <summary>
/// Generates fake data for many computer systems properties
/// </summary>
public class System : DataSet
{
/// <summary>
/// Initializes a new instance of the <see cref="System"/> class.
/// </summary>
/// <param name="locale">The locale that will be used to generate values.</param>
public System(string locale = "en") : base(locale)
{
mimes = new Lazy<BArray>(
() => this.GetArray("mimeTypes"));
lookup = new Lazy<Dictionary<string, BObject>>(
() => mimes.Value.OfType<BObject>()
.ToDictionary(o => o["mime"].StringValue));
mimeKeys = new Lazy<string[]>(
() => mimes.Value
.OfType<BObject>()
.Select(o => o["mime"].StringValue)
.Distinct()
.ToArray());
exts = new Lazy<string[]>(
() => mimes.Value
.OfType<BObject>()
.SelectMany(bObject =>
{
if (bObject.ContainsKey("extensions"))
{
var extensions = bObject["extensions"] as BArray;
return extensions.OfType<BValue>().Select(s => s.StringValue);
}
return Enumerable.Empty<string>();
})
.ToArray());
types = new Lazy<string[]>(
() => mimeKeys.Value.Select(k => k.Substring(0, k.IndexOf('/')))
.Distinct()
.ToArray());
}
protected Lorem Lorem = null;
private readonly Lazy<Dictionary<string, BObject>> lookup;
private readonly Lazy<BArray> mimes;
private readonly Lazy<string[]> exts;
private readonly Lazy<string[]> types;
private readonly Lazy<string[]> mimeKeys;
private static readonly string[] commonFileTypes =
{ "video", "audio", "image", "text", "application" };
private static readonly string[] commonMimeTypes =
{
"application/pdf",
"audio/mpeg",
"audio/wav",
"image/png",
"image/jpeg",
"image/gif",
"video/mp4",
"video/mpeg",
"text/html"
};
/// <summary>
/// Get a random file name.
/// </summary>
/// <param name="ext">
/// The extension the file name will have.
/// If null is provided, a random extension will be picked.
/// </param>
/// <returns>
/// A random file name with the given <paramref name="ext"/>
/// or a random extension
/// </returns>
public string FileName(string ext = null)
{
var filename = $"{this.Random.Words()}.{ext ?? FileExt()}";
filename = filename.Replace(" ", "_");
filename = filename.Replace(",", "_");
filename = filename.Replace("-", "_");
filename = filename.Replace(@"\", "_");
filename = filename.Replace("/", "_");
filename = filename.ToLower().Trim();
return filename;
}
/// <summary>
/// Get a random directory path (Unix).
/// </summary>
/// <returns>
/// A random Unix directory path.
/// </returns>
public string DirectoryPath()
{
return GetRandomArrayItem("directoryPaths");
}
/// <summary>
/// Get a random file path (Unix).
/// </summary>
/// <returns>
/// A random Unix file path.
/// </returns>
public string FilePath()
{
return $"{DirectoryPath()}/{FileName()}";
}
/// <summary>
/// Generates a random file name with a common file extension.
/// Extension can be overwritten with <paramref name="ext"/>.
/// </summary>
/// <param name="ext">
/// The extensions to be used for a file name.
/// </param>
/// <returns>
/// A random file name with a common extension or <paramref name="ext"/>.
/// </returns>
public string CommonFileName(string ext = null)
{
var filename = $"{this.Random.Words()}.{ext ?? CommonFileExt()}";
filename = filename.Replace(" ", "_");
filename = filename.Replace(",", "_");
filename = filename.Replace("-", "_");
filename = filename.Replace(@"\", "_");
filename = filename.Replace("/", "_");
filename = filename.ToLower().Trim();
return filename;
}
/// <summary>
/// Get a random mime type.
/// </summary>
/// <returns>
/// A random mime type.
/// </returns>
public string MimeType()
{
return this.Random.ArrayElement(this.mimeKeys.Value);
}
/// <summary>
/// Returns a commonly used file type.
/// </summary>
/// <returns>
/// A commonly used file type.
/// </returns>
public string CommonFileType()
{
return this.Random.ArrayElement(commonFileTypes);
}
/// <summary>
/// Returns a commonly used file extension.
/// </summary>
/// <returns>
/// A commonly used file extension.
/// </returns>
public string CommonFileExt()
{
return FileExt(this.Random.ArrayElement(commonMimeTypes));
}
/// <summary>
/// Returns any file type available as mime-type.
/// </summary>
/// <returns>
/// Any file type available as mime-type.
/// </returns>
public string FileType()
{
return this.Random.ArrayElement(this.types.Value);
}
/// <summary>
/// Gets a random extension for the given mime type.
/// </summary>
/// <returns>
/// A random extension for the given mime type.
/// </returns>
public string FileExt(string mimeType = null)
{
if( mimeType != null &&
lookup.Value.TryGetValue(mimeType, out var mime) &&
mime.ContainsKey("extensions") )
{
return this.Random.ArrayElement(mime["extensions"] as BArray);
}
return this.Random.ArrayElement(exts.Value);
}
/// <summary>
/// Get a random semver version string.
/// </summary>
/// <returns>
/// A random semver version string.
/// </returns>
public string Semver()
{
return $"{this.Random.Number(9)}.{this.Random.Number(9)}.{this.Random.Number(9)}";
}
/// <summary>
/// Get a random `System.Version`.
/// </summary>
/// <returns>
/// A random `System.Version`.
/// </returns>
public Version Version()
{
return new Version(this.Random.Number(9), this.Random.Number(9), this.Random.Number(9), this.Random.Number(9));
}
/// <summary>
/// Get a random `Exception` with a fake stack trace.
/// </summary>
/// <returns>
/// A random `Exception` with a fake stack trace.
/// </returns>
public Exception Exception()
{
Exception exception = null;
switch( this.Random.Number(11) )
{
case 0:
try
{
throw new ArgumentException(Random.Words(), Random.Word());
}
catch( Exception e )
{
exception = e;
}
break;
case 1:
try
{
throw new ArgumentNullException(Random.Word(), Random.Words());
}
catch( Exception e )
{
exception = e;
}
break;
case 2:
try
{
throw new BadImageFormatException(Random.Words(), Random.Word());
}
catch( Exception e )
{
exception = e;
}
break;
case 3:
try
{
throw new IndexOutOfRangeException(Random.Words());
}
catch( Exception e )
{
exception = e;
}
break;
case 4:
try
{
throw new ArithmeticException(Random.Words());
}
catch( Exception e )
{
exception = e;
}
break;
case 5:
try
{
throw new OutOfMemoryException(Random.Words());
}
catch( Exception e )
{
exception = e;
}
break;
case 6:
try
{
throw new FormatException(Random.Words());
}
catch( Exception e )
{
exception = e;
}
break;
case 7:
try
{
throw new DivideByZeroException();
}
catch( Exception e )
{
exception = e;
}
break;
case 8:
try
{
throw new EndOfStreamException(Random.Words());
}
catch( Exception e )
{
exception = e;
}
break;
case 9:
try
{
throw new FileNotFoundException("File not found...", Path.GetRandomFileName());
}
catch( Exception e )
{
exception = e;
}
break;
case 10:
try
{
throw new NotImplementedException();
}
catch( Exception e )
{
exception = e;
}
break;
case 11:
try
{
throw new UnauthorizedAccessException();
}
catch( Exception e )
{
exception = e;
}
break;
}
return exception;
}
/// <summary>
/// Get a random GCM registration ID.
/// </summary>
/// <returns>
/// A random GCM registration ID.
/// </returns>
public string AndroidId()
{
const string androidIdCharacters =
"0123456789abcefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ-_";
return $"APA91{this.Random.String2(178, androidIdCharacters)}";
}
/// <summary>
/// Get a random Apple Push Token.
/// </summary>
/// <returns>
/// A random Apple Push Token.
/// </returns>
public string ApplePushToken()
{
return this.Random.String2(64, Chars.HexLowerCase);
}
/// <summary>
/// Get a random BlackBerry Device PIN.
/// </summary>
/// <returns>
/// A random BlackBerry Device PIN.
/// </returns>
public string BlackBerryPin()
{
return this.Random.Hash(8);
}
}