forked from microsoft/TemplateStudio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuildFixture.cs
More file actions
55 lines (45 loc) · 1.94 KB
/
BuildFixture.cs
File metadata and controls
55 lines (45 loc) · 1.94 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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.IO;
using System.Linq;
using Microsoft.Templates.Core;
using Microsoft.Templates.Core.Gen;
using Microsoft.Templates.Core.Locations;
using Microsoft.Templates.Fakes;
namespace Microsoft.Templates.Test
{
public sealed class BuildFixture : BaseGenAndBuildFixture, IDisposable
{
private string _testExecutionTimeStamp = DateTime.Now.FormatAsDateHoursMinutes();
public override string GetTestRunPath() => $"{Path.GetPathRoot(Environment.CurrentDirectory)}\\UIT\\Build\\{_testExecutionTimeStamp}\\";
public TemplatesSource Source => new LocalTemplatesSource(null, "TstBld");
private static bool syncExecuted;
public static IEnumerable<object[]> GetProjectTemplates()
{
InitializeTemplates(new LocalTemplatesSource(null, "TstBld"));
return GetAllProjectTemplates();
}
[SuppressMessage(
"Usage",
"VSTHRD002:Synchronously waiting on tasks or awaiters may cause deadlocks",
Justification = "Required for unit testing.")]
private static void InitializeTemplates(TemplatesSource source)
{
if (!syncExecuted)
{
GenContext.Bootstrap(source, new FakeGenShell(Platforms.Uwp, ProgrammingLanguages.CSharp), Platforms.Uwp, ProgrammingLanguages.CSharp);
GenContext.ToolBox.Repo.SynchronizeAsync(true).Wait();
syncExecuted = true;
}
}
public override void InitializeFixture(IContextProvider contextProvider, string framework = "")
{
GenContext.Current = contextProvider;
InitializeTemplates(Source);
}
}
}