2020-12-23 11:35:49 +01:00
|
|
|
// Copyright (c) Umbraco.
|
|
|
|
|
// See LICENSE for more details.
|
|
|
|
|
|
|
|
|
|
using System.IO;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
2021-04-27 09:52:17 +02:00
|
|
|
using Microsoft.Extensions.Options;
|
2015-09-10 14:10:45 +02:00
|
|
|
using NUnit.Framework;
|
2022-06-21 08:09:38 +02:00
|
|
|
using Umbraco.Cms.Core;
|
2021-04-27 09:52:17 +02:00
|
|
|
using Umbraco.Cms.Core.Configuration.Models;
|
2021-02-09 10:22:42 +01:00
|
|
|
using Umbraco.Cms.Core.Hosting;
|
|
|
|
|
using Umbraco.Cms.Core.IO;
|
|
|
|
|
using Umbraco.Cms.Core.Models;
|
2021-02-12 13:36:50 +01:00
|
|
|
using Umbraco.Cms.Infrastructure.Persistence.Repositories.Implement;
|
2021-04-27 09:52:17 +02:00
|
|
|
using Umbraco.Cms.Tests.Common.TestHelpers;
|
2021-02-10 14:45:44 +01:00
|
|
|
using Umbraco.Cms.Tests.Common.Testing;
|
2021-02-11 08:30:27 +01:00
|
|
|
using Umbraco.Cms.Tests.Integration.Testing;
|
2015-09-10 14:10:45 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
namespace Umbraco.Cms.Tests.Integration.Umbraco.Infrastructure.Persistence.Repositories;
|
2022-04-26 10:22:37 +01:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
[TestFixture]
|
|
|
|
|
[UmbracoTest(Database = UmbracoTestOptions.Database.None)]
|
|
|
|
|
public class PartialViewRepositoryTests : UmbracoIntegrationTest
|
2015-09-10 14:10:45 +02:00
|
|
|
{
|
2022-06-21 08:09:38 +02:00
|
|
|
[SetUp]
|
|
|
|
|
public void SetUp() =>
|
|
|
|
|
_fileSystem = new PhysicalFileSystem(
|
|
|
|
|
IOHelper,
|
|
|
|
|
HostingEnvironment,
|
|
|
|
|
LoggerFactory.CreateLogger<PhysicalFileSystem>(),
|
|
|
|
|
HostingEnvironment.MapPathContentRoot(Constants.SystemDirectories.PartialViews),
|
|
|
|
|
HostingEnvironment.ToAbsolute(Constants.SystemDirectories.PartialViews));
|
|
|
|
|
|
|
|
|
|
[TearDown]
|
|
|
|
|
public void TearDownFiles()
|
2015-09-10 14:10:45 +02:00
|
|
|
{
|
2022-06-21 08:09:38 +02:00
|
|
|
// Delete all files
|
|
|
|
|
Purge((PhysicalFileSystem)_fileSystem, string.Empty);
|
|
|
|
|
_fileSystem = null;
|
|
|
|
|
}
|
2020-12-23 11:35:49 +01:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
private IHostingEnvironment HostingEnvironment => GetRequiredService<IHostingEnvironment>();
|
2015-09-10 14:10:45 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
private IFileSystem _fileSystem;
|
2015-09-10 14:10:45 +02:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
[Test]
|
|
|
|
|
public void PathTests()
|
|
|
|
|
{
|
|
|
|
|
// unless noted otherwise, no changes / 7.2.8
|
|
|
|
|
var fileSystems = FileSystemsCreator.CreateTestFileSystems(
|
|
|
|
|
LoggerFactory,
|
|
|
|
|
IOHelper,
|
|
|
|
|
GetRequiredService<IOptions<GlobalSettings>>(),
|
|
|
|
|
HostingEnvironment,
|
|
|
|
|
null,
|
|
|
|
|
_fileSystem,
|
|
|
|
|
null,
|
|
|
|
|
null,
|
|
|
|
|
null);
|
|
|
|
|
|
|
|
|
|
var provider = ScopeProvider;
|
|
|
|
|
using (var scope = provider.CreateScope())
|
2016-11-05 19:23:55 +01:00
|
|
|
{
|
2022-06-21 08:09:38 +02:00
|
|
|
var repository = new PartialViewRepository(fileSystems);
|
|
|
|
|
|
|
|
|
|
IPartialView partialView =
|
|
|
|
|
new PartialView(PartialViewType.PartialView, "test-path-1.cshtml") { Content = "// partialView" };
|
|
|
|
|
repository.Save(partialView);
|
|
|
|
|
Assert.IsTrue(_fileSystem.FileExists("test-path-1.cshtml"));
|
|
|
|
|
Assert.AreEqual("test-path-1.cshtml", partialView.Path);
|
|
|
|
|
Assert.AreEqual("/Views/Partials/test-path-1.cshtml", partialView.VirtualPath);
|
|
|
|
|
|
|
|
|
|
partialView =
|
|
|
|
|
new PartialView(PartialViewType.PartialView, "path-2/test-path-2.cshtml") { Content = "// partialView" };
|
|
|
|
|
repository.Save(partialView);
|
|
|
|
|
Assert.IsTrue(_fileSystem.FileExists("path-2/test-path-2.cshtml"));
|
|
|
|
|
Assert.AreEqual("path-2\\test-path-2.cshtml".Replace("\\", $"{Path.DirectorySeparatorChar}"), partialView.Path);
|
|
|
|
|
Assert.AreEqual("/Views/Partials/path-2/test-path-2.cshtml", partialView.VirtualPath);
|
|
|
|
|
|
|
|
|
|
partialView = repository.Get("path-2/test-path-2.cshtml");
|
|
|
|
|
Assert.IsNotNull(partialView);
|
|
|
|
|
Assert.AreEqual("path-2\\test-path-2.cshtml".Replace("\\", $"{Path.DirectorySeparatorChar}"), partialView.Path);
|
|
|
|
|
Assert.AreEqual("/Views/Partials/path-2/test-path-2.cshtml", partialView.VirtualPath);
|
|
|
|
|
|
|
|
|
|
partialView =
|
|
|
|
|
new PartialView(PartialViewType.PartialView, "path-2\\test-path-3.cshtml") { Content = "// partialView" };
|
|
|
|
|
repository.Save(partialView);
|
|
|
|
|
Assert.IsTrue(_fileSystem.FileExists("path-2/test-path-3.cshtml"));
|
|
|
|
|
Assert.AreEqual("path-2\\test-path-3.cshtml".Replace("\\", $"{Path.DirectorySeparatorChar}"), partialView.Path);
|
|
|
|
|
Assert.AreEqual("/Views/Partials/path-2/test-path-3.cshtml", partialView.VirtualPath);
|
|
|
|
|
|
|
|
|
|
partialView = repository.Get("path-2/test-path-3.cshtml");
|
|
|
|
|
Assert.IsNotNull(partialView);
|
|
|
|
|
Assert.AreEqual("path-2\\test-path-3.cshtml".Replace("\\", $"{Path.DirectorySeparatorChar}"), partialView.Path);
|
|
|
|
|
Assert.AreEqual("/Views/Partials/path-2/test-path-3.cshtml", partialView.VirtualPath);
|
|
|
|
|
|
|
|
|
|
partialView = repository.Get("path-2\\test-path-3.cshtml");
|
|
|
|
|
Assert.IsNotNull(partialView);
|
|
|
|
|
Assert.AreEqual("path-2\\test-path-3.cshtml".Replace("\\", $"{Path.DirectorySeparatorChar}"), partialView.Path);
|
|
|
|
|
Assert.AreEqual("/Views/Partials/path-2/test-path-3.cshtml", partialView.VirtualPath);
|
|
|
|
|
|
|
|
|
|
partialView =
|
|
|
|
|
new PartialView(PartialViewType.PartialView, "..\\test-path-4.cshtml") { Content = "// partialView" };
|
|
|
|
|
Assert.Throws<UnauthorizedAccessException>(() =>
|
|
|
|
|
repository.Save(partialView));
|
|
|
|
|
|
|
|
|
|
partialView =
|
|
|
|
|
new PartialView(PartialViewType.PartialView, "\\test-path-5.cshtml") { Content = "// partialView" };
|
|
|
|
|
repository.Save(partialView);
|
|
|
|
|
|
|
|
|
|
partialView = repository.Get("\\test-path-5.cshtml");
|
|
|
|
|
Assert.IsNotNull(partialView);
|
|
|
|
|
Assert.AreEqual("test-path-5.cshtml", partialView.Path);
|
|
|
|
|
Assert.AreEqual("/Views/Partials/test-path-5.cshtml", partialView.VirtualPath);
|
|
|
|
|
|
|
|
|
|
partialView = repository.Get("missing.cshtml");
|
|
|
|
|
Assert.IsNull(partialView);
|
|
|
|
|
|
|
|
|
|
Assert.Throws<UnauthorizedAccessException>(() => partialView = repository.Get("..\\test-path-4.cshtml"));
|
|
|
|
|
Assert.Throws<UnauthorizedAccessException>(() => partialView = repository.Get("../../packages.config"));
|
2016-11-05 19:23:55 +01:00
|
|
|
}
|
2022-06-21 08:09:38 +02:00
|
|
|
}
|
2016-11-05 19:23:55 +01:00
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
private void Purge(PhysicalFileSystem fs, string path)
|
|
|
|
|
{
|
|
|
|
|
var files = fs.GetFiles(path, "*.cshtml");
|
|
|
|
|
foreach (var file in files)
|
2015-09-10 14:10:45 +02:00
|
|
|
{
|
2022-06-21 08:09:38 +02:00
|
|
|
fs.DeleteFile(file);
|
2015-09-10 14:10:45 +02:00
|
|
|
}
|
|
|
|
|
|
2022-06-21 08:09:38 +02:00
|
|
|
var dirs = fs.GetDirectories(path);
|
|
|
|
|
foreach (var dir in dirs)
|
2015-09-10 14:10:45 +02:00
|
|
|
{
|
2022-06-21 08:09:38 +02:00
|
|
|
Purge(fs, dir);
|
|
|
|
|
fs.DeleteDirectory(dir);
|
2015-09-10 14:10:45 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|