Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ProjectTemplateTests.cs « Ide.Tests « tests « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b7f4e23299fd7fa572ca9ca8ee87c9a8c90a6b3 (plain)
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
//
// ProjectTemplateTests.cs
//
// Author:
//       Alan McGovern <alan@xamarin.com>
//
// Copyright (c) 2016 Xamarin Inc.
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
using System.Collections.Generic;
using System.IO;
using MonoDevelop.Ide.Templates;
using MonoDevelop.Ide.Projects;
using MonoDevelop.Projects;
using MonoDevelop.Projects.SharedAssetsProjects;
using NUnit.Framework;
using UnitTests;
using System.Linq;
using System.Threading.Tasks;
using MonoDevelop.Ide.Gui.Content;
using MonoDevelop.Core;
using MonoDevelop.Ide.CodeFormatting;
using MonoDevelop.Core.Text;
using System;

namespace MonoDevelop.Ide
{
	[TestFixture]
	public class ProjectTemplateTests : IdeTestBase
	{
		Solution solution;

		IEnumerable<string> Templates {
			get {
				return ProjectTemplate.ProjectTemplates.Select (t => t.Id);
			}
		}

		[TearDown]
		public override void TearDown ()
		{
			solution?.Dispose ();
			solution = null;

			base.TearDown ();
		}

		[Test]
		[TestCaseSource ("Templates")]
		public async Task CreateEveryProjectTemplate (string tt)
		{
			var template = ProjectTemplate.ProjectTemplates.FirstOrDefault (t => t.Id == tt);
			if (template.Name.Contains ("Gtk#"))
				return;
			var dir = Util.CreateTmpDir (template.Id);
			var cinfo = new ProjectCreateInformation {
				ProjectBasePath = dir,
				ProjectName = "ProjectName",
				SolutionName = "SolutionName",
				SolutionPath = dir
			};
			cinfo.Parameters ["CreateSharedAssetsProject"] = "False";
			cinfo.Parameters ["UseUniversal"] = "True";
			cinfo.Parameters ["UseIPad"] = "False";
			cinfo.Parameters ["UseIPhone"] = "False";
			cinfo.Parameters ["CreateiOSUITest"] = "False";
			cinfo.Parameters ["CreateAndroidUITest"] = "False";

			solution = await template.CreateWorkspaceItem (cinfo) as Solution;
		}

		[Test]
		public async Task NewSharedProjectAddedToExistingSolutionUsesCorrectBuildAction ()
		{
			solution = TestProjectsChecks.CreateConsoleSolution ("shared-project");
			await solution.SaveAsync (Util.GetMonitor ());

			var template = ProjectTemplate.ProjectTemplates.FirstOrDefault (t => t.Id == "MonoDevelop.CSharp.SharedProject");
			var dir = Util.CreateTmpDir (template.Id);
			var cinfo = new ProjectCreateInformation {
				ProjectBasePath = dir,
				ProjectName = "ProjectName",
				SolutionName = "SolutionName",
				SolutionPath = dir
			};

			var sharedAssetsProject = template.CreateProjects (solution.RootFolder, cinfo)
				.OfType<SharedAssetsProject> ().Single ();

			// Template initialization is now asynchronous so we need to wait and unblock the UI thread
			// to ensure the template finishes adding files to the project.
			const int timeout = 2000; // ms
			int waitedTime = 0;
			int delayTime = 100;
			ProjectFile myclassFile = null;
			while (myclassFile == null) {
				myclassFile = sharedAssetsProject.Files.FirstOrDefault (f => f.FilePath.FileName == "MyClass.cs");
				if (myclassFile == null) {
					if (waitedTime >= timeout)
						Assert.Fail ("Timed out waiting for file to be added to shared project.");
					await Task.Run (async () => await Task.Delay (delayTime));
					waitedTime += delayTime;
				}
			};
			Assert.AreEqual ("Compile", myclassFile.BuildAction);
		}

		async Task FormatFile (Project p, FilePath file)
		{
			string mime = IdeServices.DesktopService.GetMimeTypeForUri (file);
			if (mime == null)
				return;

			var formatter = CodeFormatterService.GetFormatter (mime);
			if (formatter != null) {
				try {
					var content = await TextFileUtility.ReadAllTextAsync (file);
					var formatted = formatter.FormatText (p.Policies, content.Text);
					if (formatted != null)
						TextFileUtility.WriteText (file, formatted, content.Encoding);
				} catch (Exception ex) {
					LoggingService.LogError ("File formatting failed", ex);
				}
			}
		}

		[Test ()]
		public async Task Bug57840 ()
		{
			var templatingService = new TemplatingService ();
			var mutliplatformLibraryCategory = templatingService.GetProjectTemplateCategories ().Single (c => c.Id == "multiplat")
																	   .Categories.Single (c => c.Id == "library")
																	   .Categories.Single (c => c.Id == "general");
			var pclTemplate = mutliplatformLibraryCategory.Templates.Single (t => t.GroupId == "md-project-portable-library").GetTemplate ("C#");
			var standardTemplate = mutliplatformLibraryCategory.Templates.Single (t => t.GroupId == "Microsoft.Common.Library").GetTemplate ("C#");

			var tempDirectory = Util.CreateTmpDir ("Bug57840Test");
			var result = await templatingService.ProcessTemplate (pclTemplate, new Ide.Projects.NewProjectConfiguration () {
				CreateSolution = true,
				Location = tempDirectory,
				SolutionName = "Bug57840Test",
				ProjectName = "Bug57840PclTestProject",
				CreateProjectDirectoryInsideSolutionDirectory = false
			}, null);

			solution = result.WorkspaceItems.OfType<Solution> ().Single ();

			await solution.SaveAsync (Util.GetMonitor ());
			var project = solution.GetAllProjects ().Single ();
			project.Policies.Set<TextStylePolicy> (new TextStylePolicy (1, 1, 1, true, true, true, EolMarker.Mac), "text/x-csharp");

			var file = project.Files.Single (f => f.FilePath.FileName == "MyClass.cs").FilePath;
			var fileContentBeforeFormat = await TextFileUtility.ReadAllTextAsync (file);
			await FormatFile (project, file);
			var fileContentAfterFormat = await TextFileUtility.ReadAllTextAsync (file);

			Assert.AreNotEqual (fileContentBeforeFormat.Text, fileContentAfterFormat.Text);//Make sure our weird formatting applied

			solution.Policies.Set<TextStylePolicy> (new TextStylePolicy (3, 3, 3, true, true, true, EolMarker.Mac), "text/x-csharp");

			var result2 = await templatingService.ProcessTemplate (standardTemplate, new Ide.Projects.NewProjectConfiguration () {
				CreateSolution = false,
				Location = solution.BaseDirectory,
				ProjectName = "Bug57840StandardTestProject",
				CreateProjectDirectoryInsideSolutionDirectory = false
			}, solution.RootFolder);
			var standardProject = result2.WorkspaceItems.OfType<DotNetProject> ().Single ();
			solution.RootFolder.AddItem (standardProject);
			await solution.SaveAsync (Util.GetMonitor ());
			var fileContentAfterSecondProject = await TextFileUtility.ReadAllTextAsync (file);
			Assert.AreEqual (fileContentAfterSecondProject.Text, fileContentAfterFormat.Text);//Make sure our weird formatting is preserved
			var class1File = standardProject.Files.Single (f => f.FilePath.FileName == "Class1.cs").FilePath;
			var fileContentAfterCreation = await TextFileUtility.ReadAllTextAsync (class1File);
			standardProject.Policies.Set<TextStylePolicy> (new TextStylePolicy (3, 3, 3, true, true, true, EolMarker.Mac), "text/x-csharp");
			await FormatFile (standardProject, class1File);
			standardProject.Dispose();
			var fileContentAfterForceFormatting = await TextFileUtility.ReadAllTextAsync (class1File);
			Assert.AreEqual (fileContentAfterForceFormatting.Text, fileContentAfterCreation.Text,
			                "We expect them to be same because we placed same formatting policy on solution before creataion as after creation on project when we manually formatted.");
		}

		[Test]
		public async Task DotNetCoreProjectTemplateUsingBackslashesInPrimaryOutputPathsIsSupported ()
		{
			var templatingService = new TemplatingService ();

			string templateId = "MonoDevelop.Ide.Tests.TwoProjects.CSharp";
			string scanPath = Util.GetSampleProjectPath ("DotNetCoreTemplating");
			var template = MicrosoftTemplateEngineProjectTemplatingProvider.CreateTemplate (templateId, scanPath);

			string tempDirectory = Util.CreateTmpDir ("BackslashInPrimaryOutputTest");
			string projectDirectory = Path.Combine (tempDirectory, "BackslashInPrimaryOutputTestProject");
			Directory.CreateDirectory (projectDirectory);
			string library1FileToOpen = Path.Combine (projectDirectory, "Library1", "MyClass.cs");
			string library2FileToOpen = Path.Combine (projectDirectory, "Library2", "MyClass.cs");

			var result = await templatingService.ProcessTemplate (template, new NewProjectConfiguration () {
				CreateSolution = true,
				Location = tempDirectory,
				SolutionName = "BackslashInPrimaryOutputTest",
				ProjectName = "BackslashInPrimaryOutputTestProject",
				CreateProjectDirectoryInsideSolutionDirectory = false,
			}, null);

			solution = result.WorkspaceItems.OfType<Solution> ().Single ();

			await solution.SaveAsync (Util.GetMonitor ());
			Assert.AreEqual (2, solution.GetAllProjects ().Count ());
			Assert.IsNotNull (solution.FindProjectByName ("Library1"));
			Assert.IsNotNull (solution.FindProjectByName ("Library2"));
			Assert.AreEqual (2, result.Actions.Count ());
			Assert.That (result.Actions, Contains.Item (library1FileToOpen));
			Assert.That (result.Actions, Contains.Item (library2FileToOpen));
		}

		[TestCase ("*.xml")]
		[TestCase ("*.XML")]
		[TestCase ("*.txt|*.xml")]
		[TestCase ("test.xml")]
		[TestCase ("TEST.xml")]
		[TestCase (null)]
		public async Task DotNetCoreProjectTemplate_ExcludeFile (string exclude)
		{
			var templatingService = new TemplatingService ();

			string templateId = "MonoDevelop.Ide.Tests.FileFormatExclude.CSharp";
			string scanPath = Util.GetSampleProjectPath ("FileFormatExclude");

			var xmlFilePath = Path.Combine (scanPath, "test.xml");
			string expectedXml = "<root><child/></root>";
			File.WriteAllText (xmlFilePath, expectedXml);

			var template = MicrosoftTemplateEngineProjectTemplatingProvider.CreateTemplate (templateId, scanPath) as MicrosoftTemplateEngineSolutionTemplate;
			template.FileFormattingExclude = exclude;

			string tempDirectory = Util.CreateTmpDir ("FileFormatExcludeTest");

			string projectDirectory = Path.Combine (tempDirectory, "FileFormatExcludeTestProject");
			Directory.CreateDirectory (projectDirectory);

			var result = await templatingService.ProcessTemplate (template, new NewProjectConfiguration () {
				CreateSolution = true,
				Location = tempDirectory,
				SolutionName = "FileFormatExcludeTest",
				ProjectName = "FileFormatExcludeTestProject",
				CreateProjectDirectoryInsideSolutionDirectory = false,
			}, null);

			solution = result.WorkspaceItems.OfType<Solution> ().Single ();

			await solution.SaveAsync (Util.GetMonitor ());

			xmlFilePath = Path.Combine (projectDirectory, "test.xml");
			string xml = File.ReadAllText (xmlFilePath);

			if (string.IsNullOrEmpty (exclude)) {
				// Ensure formatting occurs if file is not excluded.
				Assert.AreNotEqual (expectedXml, xml);
			} else {
				Assert.AreEqual (expectedXml, xml);
			}
		}

		/// <summary>
		/// Support new lines in a description that is a single line.
		/// </summary>
		[Test]
		public void MicrosoftTemplateEngine_DescriptionParsing ()
		{
			string result = MicrosoftTemplateEngineSolutionTemplate.ParseDescription ("test");
			Assert.AreEqual ("test", result);

			result = MicrosoftTemplateEngineSolutionTemplate.ParseDescription (@"test\n");
			Assert.AreEqual ("test" + Environment.NewLine, result);

			result = MicrosoftTemplateEngineSolutionTemplate.ParseDescription (@"\ntest");
			Assert.AreEqual (Environment.NewLine + "test", result);

			result = MicrosoftTemplateEngineSolutionTemplate.ParseDescription (@"t\nest");
			Assert.AreEqual ("t" + Environment.NewLine + "est", result);

			result = MicrosoftTemplateEngineSolutionTemplate.ParseDescription (@"t\n\nest");
			Assert.AreEqual ("t" + Environment.NewLine + Environment.NewLine + "est", result);

			result = MicrosoftTemplateEngineSolutionTemplate.ParseDescription (@"test\\n");
			Assert.AreEqual (@"test\n", result);

			result = MicrosoftTemplateEngineSolutionTemplate.ParseDescription (@"\\ntest");
			Assert.AreEqual (@"\ntest", result);

			result = MicrosoftTemplateEngineSolutionTemplate.ParseDescription (@"test\");
			Assert.AreEqual (@"test\", result);

			result = MicrosoftTemplateEngineSolutionTemplate.ParseDescription (@"te\st");
			Assert.AreEqual (@"te\st", result);

			result = MicrosoftTemplateEngineSolutionTemplate.ParseDescription (@"te\\st");
			Assert.AreEqual (@"te\\st", result);

			result = MicrosoftTemplateEngineSolutionTemplate.ParseDescription (null);
			Assert.IsNull (result);
		}
	}
}