Skip to content

Commit

Permalink
fix: use reflection to find already imported libs GlitchEnzo#395
Browse files Browse the repository at this point in the history
  • Loading branch information
robin-moss committed Mar 2, 2022
1 parent b6ef820 commit 91f4b5c
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 28 deletions.
34 changes: 6 additions & 28 deletions Assets/NuGet/Editor/NugetHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -561,43 +561,21 @@ private static bool IsAlreadyImportedInEngine(NugetPackageIdentifier package)
private static HashSet<string> alreadyImportedLibs = null;
private static HashSet<string> GetAlreadyImportedLibs()
{

if (alreadyImportedLibs == null)
{
string[] lookupPaths = GetAllLookupPaths();
IEnumerable<string> libNames = lookupPaths
.SelectMany(directory => Directory.EnumerateFiles(directory, "*.dll", SearchOption.AllDirectories))
.Select(Path.GetFileName)
.Select(p => Path.ChangeExtension(p, null));
List<string> packageIds = PackagesConfigFile.Packages.Select(p => p.Id).ToList();
IEnumerable<string> libNames = AppDomain.CurrentDomain.GetAssemblies()
.Select(a => a.ManifestModule.Name)
.Select(p => Path.ChangeExtension(p, null))
.Where(p => !packageIds.Contains(p));
alreadyImportedLibs = new HashSet<string>(libNames);
LogVerbose("Already imported libs: {0}", string.Join(", ", alreadyImportedLibs));
}

return alreadyImportedLibs;
}

private static string[] GetAllLookupPaths()
{
var executablePath = EditorApplication.applicationPath;
var roots = new[] {
// MacOS directory layout
Path.Combine(executablePath, "Contents"),
// Windows directory layout
Path.Combine(Directory.GetParent(executablePath).FullName, "Data")
};
var relativePaths = new[] {
Path.Combine("NetStandard", "compat"),
Path.Combine("MonoBleedingEdge", "lib", "mono")
};
var allPossiblePaths = roots
.SelectMany(root => relativePaths
.Select(relativePath => Path.Combine(root, relativePath)));
var existingPaths = allPossiblePaths
.Where(Directory.Exists)
.ToArray();
LogVerbose("All existing path to dependency lookup are: {0}", string.Join(", ", existingPaths));
return existingPaths;
}

public static NugetFrameworkGroup GetBestDependencyFrameworkGroupForCurrentSettings(NugetPackage package)
{
var targetFrameworks = package.Dependencies
Expand Down
49 changes: 49 additions & 0 deletions Assets/Tests/Editor/NuGetTests.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using NUnit.Framework;
using NugetForUnity;
using System.IO;
using System.Reflection;
using System.Linq;
using UnityEditor;
using UnityEngine;
Expand Down Expand Up @@ -222,4 +223,52 @@ public void PackageSourceCredentialsTest(string name)
Assert.That(parsedSource.UserName, Is.EqualTo(username));
Assert.That(parsedSource.SavedPassword, Is.EqualTo(password));
}

/// <summary>
/// Dependencies under MonoBleedingEdge may not be part of Unity Editor/Runtime, lets test the
/// <see cref="NugetHelper.IsAlreadyImportedInEngine"/> by checking the status of MonoBleedingEdge only DLLs and
/// those that are also part of Unity Runtime.
/// </summary>
[Test]
[TestCase("System.ComponentModel.Annotations", "5.0.0", false)]
[TestCase("Mono.Posix", "7.1.0-final.1.21458.1", true)]
public void MonoBleedingEdgeTest(string id, string version, bool alreadyInstalled)
{
var identifier = new NugetPackageIdentifier(id, version);
if (alreadyInstalled)
{
Assert.IsTrue(NugetHelper.IsInstalled(identifier), "The package should be installed: {0} {1}", identifier.Id,
identifier.Version);
}
else
{
Assert.IsFalse(NugetHelper.IsInstalled(identifier), "The package should not be installed: {0} {1}", identifier.Id,
identifier.Version);
}
}

[Test]
public void TestUpgrading()
{
NugetHelper.LoadNugetConfigFile();

var componentModelAnnotation47 = new NugetPackageIdentifier("System.ComponentModel.Annotations", "4.7.0");
var componentModelAnnotation5 = new NugetPackageIdentifier("System.ComponentModel.Annotations", "5.0.0");

NugetHelper.InstallIdentifier(componentModelAnnotation47);
Assert.IsTrue(NugetHelper.IsInstalled(componentModelAnnotation47), "The package was NOT installed: {0} {1}", componentModelAnnotation47.Id, componentModelAnnotation47.Version);

// Force NuGetHelper to reload the "alreadyImportedLibs"
var field = typeof(NugetHelper).GetField("alreadyImportedLibs", BindingFlags.Static | BindingFlags.NonPublic);
Assert.IsNotNull(field, "Failed to find the field 'alreadyImportedLibs' in NugetHelper");
field.SetValue(null, null);

NugetHelper.InstallIdentifier(componentModelAnnotation5);
Assert.IsTrue(NugetHelper.IsInstalled(componentModelAnnotation5), "The package was NOT installed: {0} {1}", componentModelAnnotation5.Id, componentModelAnnotation5.Version);
Assert.IsFalse(NugetHelper.IsInstalled(componentModelAnnotation47), "The package is STILL installed: {0} {1}", componentModelAnnotation47.Id, componentModelAnnotation47.Version);

NugetHelper.UninstallAll();

Assert.IsFalse(NugetHelper.IsInstalled(componentModelAnnotation5), "The package is STILL installed: {0} {1}", componentModelAnnotation5.Id, componentModelAnnotation5.Version);
}
}

0 comments on commit 91f4b5c

Please sign in to comment.