-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathBaseTest.cs
68 lines (58 loc) · 2.15 KB
/
BaseTest.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
// Copyright (c) Mohamed Hassan & Contributors. All rights reserved. See License.md in the project root for license information.
namespace OData2Poco.Tests;
using InfraStructure.FileSystem;
public abstract class BaseTest
{
protected List<ClassTemplate> _classList;
protected IPocoFileSystem _fileSystem;
protected bool IsCi => Environment.GetEnvironmentVariable("CI") == "true";
protected bool IsLocalTest => Environment.GetEnvironmentVariable("LOCAL_TEST") == "1";
[OneTimeSetUp]
public void BaseOneTimeSetup()
{
_classList = Moq.TripPinModel;
Environment.CurrentDirectory = TestContext.CurrentContext.TestDirectory;
_fileSystem = new NullFileSystem();
Trace.Listeners.Add(new TextWriterTraceListener(Console.Out));
}
protected ClassTemplate GetClassTemplateSample(string name)
{
var ct = _classList.Find(c => c.Name.Equals(name, StringComparison.OrdinalIgnoreCase));
return ct;
}
protected string[] StringToArray(string text, char sep = ',')
{
return string.IsNullOrEmpty(text) ? [] : text.Split(sep);
}
/// <summary>
/// create temp file in user temp folder
/// </summary>
/// <param name="content"></param>
/// <param name="extension"> extension w/o . like .txt or txt</param>
/// <returns></returns>
//extension ".txt"
protected string NewTemporaryFile(string content, string extension = null)
{
var filepath = Path.GetTempFileName();
if (!string.IsNullOrEmpty(extension))
{
extension = extension.TrimStart('.');
filepath = Path.ChangeExtension(Path.GetTempFileName(), $".{extension}");
}
File.WriteAllText(filepath, content);
return filepath;
}
/// <summary>
/// Remove environment variable
/// </summary>
/// <param name="names"></param>
protected void DelEnv(params string[] names)
{
if (names == null) return;
foreach (var name in names) Environment.SetEnvironmentVariable(name, null);
}
protected void CreateEnv(string name, string value)
{
Environment.SetEnvironmentVariable(name, value);
}
}