fixed references to stings, fixed tests
This commit is contained in:
parent
3dcf08baf5
commit
12bcae137a
7 changed files with 19 additions and 14 deletions
src
|
@ -11,7 +11,7 @@ Project which contains source generators required for EllieBot project
|
|||
-- How it works --
|
||||
Creates a file "strs.cs" containing a class called "strs" in "EllieBot" namespace.
|
||||
|
||||
Loads "data/strings/responses.en-US.json" and creates a property or a function for each key in the responses json file based on whether the value has string format placeholders or not.
|
||||
Loads "strings/responses.en-US.json" and creates a property or a function for each key in the responses json file based on whether the value has string format placeholders or not.
|
||||
|
||||
- If a value has no placeholders, it creates a property in the strs class which returns an instance of a LocStr struct containing only the key and no replacement parameters
|
||||
|
||||
|
|
|
@ -11,9 +11,9 @@ namespace EllieBot.Tests
|
|||
{
|
||||
public class CommandStringsTests
|
||||
{
|
||||
private const string responsesPath = "../../../../EllieBot/data/strings/responses";
|
||||
private const string commandsPath = "../../../../EllieBot/data/strings/commands";
|
||||
private const string aliasesPath = "../../../../EllieBot/data/aliases.yml";
|
||||
private const string responsesPath = "../../../../EllieBot/strings/responses";
|
||||
private const string commandsPath = "../../../../EllieBot/strings/commands";
|
||||
private const string aliasesPath = "../../../../EllieBot/aliases.yml";
|
||||
|
||||
[Test]
|
||||
public void AllCommandNamesHaveStrings()
|
||||
|
@ -96,7 +96,7 @@ namespace EllieBot.Tests
|
|||
if (isSuccess)
|
||||
Assert.Pass();
|
||||
else
|
||||
Assert.Warn("There are some unused entries in data/aliases.yml");
|
||||
Assert.Warn("There are some unused entries in aliases.yml");
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
@ -123,7 +123,7 @@ namespace EllieBot.Tests
|
|||
}
|
||||
}
|
||||
|
||||
Assert.That(isSuccess, Is.True, "There are some unused command strings in data/strings/commands.en-US.yml");
|
||||
Assert.That(isSuccess, Is.True, "There are some unused command strings in strings/commands.en-US.yml");
|
||||
}
|
||||
}
|
||||
}
|
|
@ -109,7 +109,7 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<AdditionalFiles Include="data\strings\responses\responses.en-US.json" />
|
||||
<AdditionalFiles Include="strings\responses\responses.en-US.json" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -133,6 +133,11 @@
|
|||
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</None>
|
||||
<None Update="strings\aliases.yml">
|
||||
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -10,14 +10,14 @@ public static class CommandNameLoadHelper
|
|||
private static readonly Lazy<Dictionary<string, string[]>> _lazyCommandAliases
|
||||
= new(() => LoadAliases());
|
||||
|
||||
public static Dictionary<string, string[]> LoadAliases(string aliasesFilePath = "data/aliases.yml")
|
||||
public static Dictionary<string, string[]> LoadAliases(string aliasesFilePath = "strings/aliases.yml")
|
||||
{
|
||||
var text = File.ReadAllText(aliasesFilePath);
|
||||
return _deserializer.Deserialize<Dictionary<string, string[]>>(text);
|
||||
}
|
||||
|
||||
public static Dictionary<string, CommandStrings> LoadCommandStrings(
|
||||
string commandsFilePath = "data/strings/commands.yml")
|
||||
string commandsFilePath = "strings/commands.yml")
|
||||
{
|
||||
var text = File.ReadAllText(commandsFilePath);
|
||||
|
||||
|
|
|
@ -11,7 +11,7 @@ public class Localization : ILocalization, IReadyExecutor
|
|||
{
|
||||
private static readonly Dictionary<string, CommandData> _commandData =
|
||||
JsonConvert.DeserializeObject<Dictionary<string, CommandData>>(
|
||||
File.ReadAllText("./data/strings/commands/commands.en-US.json"));
|
||||
File.ReadAllText("./strings/commands/commands.en-US.json"));
|
||||
|
||||
private ConcurrentDictionary<ulong, CultureInfo> _guildCultureInfos;
|
||||
|
||||
|
|
|
@ -9,12 +9,12 @@ namespace EllieBot.Services;
|
|||
/// </summary>
|
||||
public class LocalFileStringsSource : IStringsSource
|
||||
{
|
||||
private readonly string _responsesPath = "data/strings/responses";
|
||||
private readonly string _commandsPath = "data/strings/commands";
|
||||
private readonly string _responsesPath = "strings/responses";
|
||||
private readonly string _commandsPath = "strings/commands";
|
||||
|
||||
public LocalFileStringsSource(
|
||||
string responsesPath = "data/strings/responses",
|
||||
string commandsPath = "data/strings/commands")
|
||||
string responsesPath = "strings/responses",
|
||||
string commandsPath = "strings/commands")
|
||||
{
|
||||
_responsesPath = responsesPath;
|
||||
_commandsPath = commandsPath;
|
||||
|
|
Loading…
Add table
Reference in a new issue