Compare commits
5 Commits
a03dffabb7
...
f923628c53
Author | SHA1 | Date | |
---|---|---|---|
f923628c53 | |||
1994e92e9e | |||
51aca7a2c2 | |||
a1c1a0d5b0 | |||
422909352e |
@ -9,6 +9,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<PackageReference Include="FluentAssertions" Version="6.11.0" />
|
||||||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
|
||||||
<PackageReference Include="xunit" Version="2.4.2" />
|
<PackageReference Include="xunit" Version="2.4.2" />
|
||||||
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
|
||||||
|
@ -1 +1,2 @@
|
|||||||
global using Xunit;
|
global using Xunit;
|
||||||
|
global using FluentAssertions;
|
60
src/Pacserver.Tests/checkForNewerStuffTest.cs
Normal file
60
src/Pacserver.Tests/checkForNewerStuffTest.cs
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
using Pacserver.Utils;
|
||||||
|
|
||||||
|
namespace Pacserver.Tests;
|
||||||
|
|
||||||
|
public class checkForNewerStuffTest {
|
||||||
|
[Fact]
|
||||||
|
public void checkForNewerPackages_throwsExceptionIfNoFilesExist() {
|
||||||
|
// Arrange
|
||||||
|
PacserverUtils utils = new PacserverUtils();
|
||||||
|
|
||||||
|
// Act
|
||||||
|
Action act = () => utils.diff("/tmp/before_update.txt", "/tmp/after_update.txt");
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
act.Should().Throw<FileNotFoundException>().WithMessage("Necessary files could not be found");
|
||||||
|
}
|
||||||
|
|
||||||
|
[Fact]
|
||||||
|
public void getEveryPackageNameAndVersionViaFolderName_createsFiles() {
|
||||||
|
// Arrange
|
||||||
|
PacserverUtils utils = new PacserverUtils();
|
||||||
|
utils.readPacmanConfig();
|
||||||
|
|
||||||
|
// Act
|
||||||
|
utils.getEveryPackageNameAndVersionViaFolderName("/tmp/before_update.txt");
|
||||||
|
utils.getEveryPackageNameAndVersionViaFolderName("/tmp/after_update.txt");
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
File.Exists("/tmp/before_update.txt").Should().BeTrue();
|
||||||
|
File.Exists("/tmp/after_update.txt").Should().BeTrue();
|
||||||
|
}
|
||||||
|
|
||||||
|
[Fact]
|
||||||
|
public void packageNamesAndVersion_notEmpty() {
|
||||||
|
// Arrange
|
||||||
|
PacserverUtils utils = new PacserverUtils();
|
||||||
|
utils.readPacmanConfig();
|
||||||
|
utils.getEveryPackageNameAndVersionViaFolderName("/tmp/before_update.txt");
|
||||||
|
|
||||||
|
// Act
|
||||||
|
List<String> packageList = utils.packageNamesAndVersion;
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
packageList.Should().NotBeNullOrEmpty();
|
||||||
|
}
|
||||||
|
|
||||||
|
[Fact]
|
||||||
|
public void getEveryPackageNameAndVersionViaFolderName_throwsExceptionIfListIsEmpty() {
|
||||||
|
// Arrange
|
||||||
|
PacserverUtils utils = new PacserverUtils();
|
||||||
|
Directory.CreateDirectory("/tmp/local");
|
||||||
|
utils.pacmanDatabaseDirectory = "/tmp/";
|
||||||
|
|
||||||
|
// Act
|
||||||
|
Action act = () => utils.getEveryPackageNameAndVersionViaFolderName("/tmp/before_update.txt");
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
act.Should().Throw<Exception>().WithMessage("How did you execute this without any packages?");
|
||||||
|
}
|
||||||
|
}
|
31
src/Pacserver.Tests/checkIfDatabasesWereModifiedTest.cs
Normal file
31
src/Pacserver.Tests/checkIfDatabasesWereModifiedTest.cs
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
using Pacserver.Utils;
|
||||||
|
|
||||||
|
namespace Pacserver.Tests;
|
||||||
|
|
||||||
|
public class checkIfDatabasesWereModifiedTest {
|
||||||
|
[Fact]
|
||||||
|
public void checkIfDatabasesWereModified_throwsExceptionIfNoValidModeIsGiven() {
|
||||||
|
// Arrange
|
||||||
|
PacserverUtils utils = new PacserverUtils();
|
||||||
|
utils.readPacmanConfig();
|
||||||
|
|
||||||
|
// Act
|
||||||
|
Action act = () => utils.checkIfDatabasesWereModified("test", "/tmp/test.txt");
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
act.Should().Throw<ArgumentException>().WithMessage("No valid mode was given. Valid modes are before and after");
|
||||||
|
}
|
||||||
|
|
||||||
|
[Fact]
|
||||||
|
public void checkIfDatabasesWereModified_throwsNoExceptionIfValidModeIsGiven() {
|
||||||
|
// Arrange
|
||||||
|
PacserverUtils utils = new PacserverUtils();
|
||||||
|
utils.readPacmanConfig();
|
||||||
|
|
||||||
|
// Act
|
||||||
|
Action act = () => utils.checkIfDatabasesWereModified("before", "/tmp/test.txt");
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
act.Should().NotThrow();
|
||||||
|
}
|
||||||
|
}
|
@ -3,8 +3,8 @@ using System.Text.RegularExpressions;
|
|||||||
|
|
||||||
namespace Pacserver.Utils;
|
namespace Pacserver.Utils;
|
||||||
public class PacserverUtils {
|
public class PacserverUtils {
|
||||||
public string pacmanCacheDirectory { get; set; } = string.Empty;
|
public string pacmanCacheDirectory = string.Empty;
|
||||||
public static string pacmanDatabaseDirectory { get; set; } = string.Empty;
|
public string pacmanDatabaseDirectory = string.Empty;
|
||||||
public static List<String> pathsToDetermine = new List<String>() { "CacheDir", "DBPath" };
|
public static List<String> pathsToDetermine = new List<String>() { "CacheDir", "DBPath" };
|
||||||
public void readPacmanConfig() {
|
public void readPacmanConfig() {
|
||||||
using (StreamReader file = new StreamReader("/etc/pacman.conf")) {
|
using (StreamReader file = new StreamReader("/etc/pacman.conf")) {
|
||||||
@ -36,8 +36,61 @@ public class PacserverUtils {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void checkForNewerPackagesAndDatabases() {
|
public List<String> packageNamesAndVersion = new List<String>();
|
||||||
|
public void getEveryPackageNameAndVersionViaFolderName(string filePath) {
|
||||||
|
string[] directories = Directory.GetDirectories(pacmanDatabaseDirectory + "local/");
|
||||||
|
foreach (string directory in directories) {
|
||||||
|
packageNamesAndVersion.Add(new DirectoryInfo(directory).Name);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (packageNamesAndVersion.Capacity > 0) {
|
||||||
|
File.WriteAllLines(filePath, packageNamesAndVersion);
|
||||||
|
} else {
|
||||||
|
throw new Exception("How did you execute this without any packages?");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<String> diffOfPackagesOrDatabases = new List<String>();
|
||||||
|
public void diff(string before, string after) {
|
||||||
|
if (File.Exists(before) && File.Exists(after)) {
|
||||||
|
diffOfPackagesOrDatabases = File.ReadAllLines(after).Except(File.ReadLines(before)).ToList();
|
||||||
|
} else {
|
||||||
|
throw new FileNotFoundException("Necessary files could not be found");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<String> databases = new List<String>();
|
||||||
|
public void checkIfDatabasesWereModified(string mode, string filePath) {
|
||||||
|
string[] databases = Directory.GetFiles(pacmanDatabaseDirectory + "sync/");
|
||||||
|
|
||||||
|
foreach (string database in databases) {
|
||||||
|
switch (mode) {
|
||||||
|
case "before":
|
||||||
|
writeDatabaseAccessTimeToFile(filePath, database);
|
||||||
|
break;
|
||||||
|
case "after":
|
||||||
|
writeDatabaseAccessTimeToFile(filePath, database);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new ArgumentException("No valid mode was given. Valid modes are before and after");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void writeDatabaseAccessTimeToFile(string filePath, string database) {
|
||||||
|
if (!File.Exists(filePath)) {
|
||||||
|
using (File.Open(filePath, FileMode.OpenOrCreate, FileAccess.ReadWrite, FileShare.ReadWrite)) {
|
||||||
|
using (StreamWriter sw = new StreamWriter(filePath)) {
|
||||||
|
sw.WriteLine(database + " " + File.GetLastAccessTime(database));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (File.Exists(filePath)) {
|
||||||
|
using (File.Open(filePath, FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite)) {
|
||||||
|
using (var sw = new StreamWriter(filePath, true)) {
|
||||||
|
sw.WriteLine(database + " " + File.GetLastAccessTime(database));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private static List<String> newerPackagesAndDatabases = new List<String>();
|
private static List<String> newerPackagesAndDatabases = new List<String>();
|
||||||
|
@ -6,16 +6,43 @@ public class Program {
|
|||||||
Console.ForegroundColor = ConsoleColor.Red;
|
Console.ForegroundColor = ConsoleColor.Red;
|
||||||
Console.WriteLine("Please specify an option.");
|
Console.WriteLine("Please specify an option.");
|
||||||
Console.ResetColor();
|
Console.ResetColor();
|
||||||
Console.WriteLine("Possible options are: determinePacmanCacheDirectory");
|
Console.WriteLine("Possible options are: determinePacmanCacheDirectory, packagesBefore, packagesAfter, diffPackages, databasesBefore, databasesAfter, diffDatabases");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
PacserverUtils utils = new PacserverUtils();
|
||||||
|
|
||||||
switch (args[0]) {
|
switch (args[0]) {
|
||||||
case "determinePacmanCacheDirectory":
|
case "determinePacmanCacheDirectory":
|
||||||
PacserverUtils utils = new PacserverUtils();
|
|
||||||
utils.readPacmanConfig();
|
utils.readPacmanConfig();
|
||||||
Console.WriteLine(utils.pacmanCacheDirectory);
|
Console.WriteLine(utils.pacmanCacheDirectory);
|
||||||
break;
|
break;
|
||||||
|
case "packagesBefore":
|
||||||
|
utils.readPacmanConfig();
|
||||||
|
utils.getEveryPackageNameAndVersionViaFolderName("/tmp/before_update.txt");
|
||||||
|
break;
|
||||||
|
case "packagesAfter":
|
||||||
|
utils.readPacmanConfig();
|
||||||
|
utils.getEveryPackageNameAndVersionViaFolderName("/tmp/after_update.txt");
|
||||||
|
break;
|
||||||
|
case "diffPackages":
|
||||||
|
utils.diff("/tmp/before_update.txt", "/tmp/after_update.txt");
|
||||||
|
string packages = string.Join(",", utils.diffOfPackagesOrDatabases);
|
||||||
|
Console.WriteLine(packages);
|
||||||
|
break;
|
||||||
|
case "databasesBefore":
|
||||||
|
utils.readPacmanConfig();
|
||||||
|
utils.checkIfDatabasesWereModified("before", "/tmp/databases_before.txt");
|
||||||
|
break;
|
||||||
|
case "databasesAfter":
|
||||||
|
utils.readPacmanConfig();
|
||||||
|
utils.checkIfDatabasesWereModified("after", "/tmp/databases_after.txt");
|
||||||
|
break;
|
||||||
|
case "diffDatabases":
|
||||||
|
utils.diff("/tmp/databases_before.txt", "/tmp/databases_after.txt");
|
||||||
|
string databases = string.Join(",", utils.diffOfPackagesOrDatabases);
|
||||||
|
Console.WriteLine(databases);
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
Console.ForegroundColor = ConsoleColor.Red;
|
Console.ForegroundColor = ConsoleColor.Red;
|
||||||
Console.WriteLine(args[0] + " is not a recognized option.");
|
Console.WriteLine(args[0] + " is not a recognized option.");
|
||||||
|
Loading…
Reference in New Issue
Block a user