blob: 10b130986ffd69fe608f5f1045d64bde2722eb26 [file] [log] [blame]
using Microsoft.Extensions.Configuration;
using System;
using System.Collections.Concurrent;
namespace Lucene.Net.Configuration
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
internal sealed class TestConfigurationFactory : IConfigurationFactory
{
// LUCENENET - use Lazy<T> to make the create operation atomic. See #417.
private readonly ConcurrentDictionary<string, Lazy<IConfigurationRoot>> configurationCache = new ConcurrentDictionary<string, Lazy<IConfigurationRoot>>();
/// <summary>
/// Filename to be used for configuration settings.
/// </summary>
public string JsonTestSettingsFileName { get; set; } = "lucene.testsettings.json";
/// <summary>
/// Prefix to be used for environment variable settings.
/// </summary>
public string EnvironmentVariablePrefix { get; set; } = "lucene:";
/// <summary>
/// Test directory for mocking.
/// </summary>
internal string TestDirectory { get; set; }
/// <summary>
/// Initializes a cache containing a <see cref="EnvironmentVariablesConfigurationProvider"/> and a JSON source by default.
/// Uses the supplied <see cref="JsonTestSettingsFileName"/>.
/// </summary>
/// <returns>An <see cref="IConfiguration"/> instance.</returns>
public IConfiguration GetConfiguration()
{
string testDirectory = TestDirectory ?? // For mocking
NUnit.Framework.TestContext.CurrentContext.TestDirectory;
// LUCENENET - use Lazy<T> to make the create operation atomic. See #417.
return configurationCache.GetOrAdd(testDirectory,
(key) => new Lazy<IConfigurationRoot>(() =>
{
return new ConfigurationBuilder()
.AddEnvironmentVariables(EnvironmentVariablePrefix) // Use a custom prefix to only load Lucene.NET settings
.AddJsonFilesFromRootDirectoryTo(currentPath: key, JsonTestSettingsFileName)
.AddNUnitTestRunSettings()
.Build();
})).Value;
}
}
}