forked from aspnet/LibraryManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add variable expansion in defaultDestination
This implements aspnet#68, except I used [Name] instead of [LibraryName]. It felt like LibraryName should be matched with LibraryVersion and that felt verbose, so I took the shorter versions. This expansion is applied when we expand the ManifestOnDisk (which is either read from disk or from a raw JSON) into LibraryInstallationState. This is where we determine to use the defaultDestination or a library-specific destination, so it should be the only place this expansion needs to occur.
- Loading branch information
1 parent
20bd1d8
commit d252a09
Showing
2 changed files
with
141 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
109 changes: 109 additions & 0 deletions
109
test/LibraryManager.Test/Json/LibraryStateToFileConverterTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
// Copyright (c) .NET Foundation. All rights reserved. | ||
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. | ||
|
||
using System; | ||
using System.IO; | ||
using Microsoft.VisualStudio.TestTools.UnitTesting; | ||
using Microsoft.Web.LibraryManager.Contracts; | ||
using Microsoft.Web.LibraryManager.Json; | ||
using Microsoft.Web.LibraryManager.LibraryNaming; | ||
using Microsoft.Web.LibraryManager.Mocks; | ||
using Microsoft.Web.LibraryManager.Providers.Cdnjs; | ||
|
||
namespace Microsoft.Web.LibraryManager.Test.Json | ||
{ | ||
[TestClass] | ||
public class LibraryStateToFileConverterTests | ||
{ | ||
[TestInitialize] | ||
public void Setup() | ||
{ | ||
string cacheFolder = Environment.ExpandEnvironmentVariables(@"%localappdata%\Microsoft\Library\"); | ||
string projectFolder = Path.Combine(Path.GetTempPath(), "LibraryManager"); | ||
var hostInteraction = new HostInteraction(projectFolder, cacheFolder); | ||
var dependencies = new Dependencies(hostInteraction, new CdnjsProviderFactory()); | ||
IProvider provider = dependencies.GetProvider("cdnjs"); | ||
LibraryIdToNameAndVersionConverter.Instance.Reinitialize(dependencies); | ||
} | ||
|
||
[TestMethod] | ||
public void ConvertToLibraryInstallationState_NullStateOnDisk() | ||
{ | ||
LibraryStateToFileConverter converter = new LibraryStateToFileConverter("provider", "destination"); | ||
|
||
ILibraryInstallationState result = converter.ConvertToLibraryInstallationState(null); | ||
|
||
Assert.IsNull(result); | ||
} | ||
|
||
[TestMethod] | ||
public void ConvertToLibraryInstallationState_UseDefaultProviderAndDestination() | ||
{ | ||
LibraryStateToFileConverter converter = new LibraryStateToFileConverter("defaultProvider", "defaultDestination"); | ||
|
||
var stateOnDisk = new LibraryInstallationStateOnDisk | ||
{ | ||
LibraryId = "libraryId", | ||
}; | ||
|
||
ILibraryInstallationState result = converter.ConvertToLibraryInstallationState(stateOnDisk); | ||
|
||
Assert.AreEqual("defaultProvider", result.ProviderId); | ||
Assert.AreEqual("defaultDestination", result.DestinationPath); | ||
} | ||
|
||
[TestMethod] | ||
public void ConvertToLibraryInstallationState_OverrideProviderAndDestination() | ||
{ | ||
LibraryStateToFileConverter converter = new LibraryStateToFileConverter("defaultProvider", "defaultDestination"); | ||
|
||
var stateOnDisk = new LibraryInstallationStateOnDisk | ||
{ | ||
LibraryId = "libraryId", | ||
ProviderId = "provider", | ||
DestinationPath = "destination", | ||
}; | ||
|
||
ILibraryInstallationState result = converter.ConvertToLibraryInstallationState(stateOnDisk); | ||
|
||
Assert.AreEqual("provider", result.ProviderId); | ||
Assert.AreEqual("destination", result.DestinationPath); | ||
} | ||
|
||
[TestMethod] | ||
public void ConvertToLibraryInstallationState_ExpandTokensInDefaultDestination() | ||
{ | ||
LibraryStateToFileConverter converter = new LibraryStateToFileConverter("defaultProvider", "lib/[Name]/[Version]"); | ||
|
||
var stateOnDisk = new LibraryInstallationStateOnDisk | ||
{ | ||
LibraryId = "testLibraryId@1.0", | ||
// it needs to be a provider that uses the versioned naming scheme | ||
ProviderId = "cdnjs", | ||
}; | ||
|
||
ILibraryInstallationState result = converter.ConvertToLibraryInstallationState(stateOnDisk); | ||
|
||
Assert.AreEqual("lib/testLibraryId/1.0", result.DestinationPath); | ||
} | ||
|
||
[TestMethod] | ||
[DataRow("filesystem", "c:\\path\\to\\library")] | ||
[DataRow("filesystem", "/path/to/library")] | ||
[DataRow("cdnjs", "@scope/library@1.0.0")] | ||
public void ConvertToLibraryInstallationState_ExpandTokensInDefaultDestination_NamesWithSlashes(string provider, string libraryId) | ||
{ | ||
LibraryStateToFileConverter converter = new LibraryStateToFileConverter("defaultProvider", "lib/[Name]"); | ||
|
||
var stateOnDisk = new LibraryInstallationStateOnDisk | ||
{ | ||
LibraryId = libraryId, | ||
ProviderId = provider, | ||
}; | ||
|
||
ILibraryInstallationState result = converter.ConvertToLibraryInstallationState(stateOnDisk); | ||
|
||
Assert.AreEqual("lib/library", result.DestinationPath); | ||
} | ||
} | ||
} |