Add Change Tree test
This commit is contained in:
parent
dafb489eb4
commit
47c7c3acf6
|
@ -7,8 +7,8 @@ public class AugeasTests
|
|||
{
|
||||
private Augeas _augeas;
|
||||
|
||||
private const string EXAMPLE_CONF_1 = "/etc/apache2/sites-available/example.com.conf";
|
||||
private const string EXAMPLE_CONF_2 = "/etc/apache2/sites-available/example2.com.conf";
|
||||
private const string ExampleConf1 = "/etc/apache2/sites-available/example.com.conf";
|
||||
private const string ExampleConf2 = "/etc/apache2/sites-available/example2.com.conf";
|
||||
|
||||
private static string RandomString(int length)
|
||||
{
|
||||
|
@ -24,21 +24,32 @@ public class AugeasTests
|
|||
var rootDir = Environment.CurrentDirectory + "/root";
|
||||
var lensDir = Environment.CurrentDirectory + "/lens";
|
||||
_augeas = new Augeas(new AugSettings(rootDir, lensDir));
|
||||
_augeas.LoadFile(EXAMPLE_CONF_1);
|
||||
_augeas.LoadFile(EXAMPLE_CONF_2);
|
||||
_augeas.LoadFile(ExampleConf1);
|
||||
_augeas.LoadFile(ExampleConf2);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void GetTreeHasDirectivesAndArguments()
|
||||
{
|
||||
var tree = _augeas.GetTree("VirtualHost", $"/files{EXAMPLE_CONF_1}/VirtualHost/*");
|
||||
var tree = _augeas.GetTree("VirtualHost", $"/files{ExampleConf1}/VirtualHost/*");
|
||||
Assert.That(tree.Arguments.Count > 0 && tree.Directives.Count > 0);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void TreeIsChangeable()
|
||||
{
|
||||
var tree = _augeas.GetTree("VirtualHost", $"/files{ExampleConf1}/VirtualHost/*");
|
||||
var directive = tree.GetDirective("ServerName");
|
||||
var newValue = RandomString(10);
|
||||
directive.Set($"ServerName {newValue}");
|
||||
bool save = directive.Save();
|
||||
Assert.That(save);
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void NoExceptionThrownWhenPrintingPreview()
|
||||
{
|
||||
var virtualHostConfig = EXAMPLE_CONF_1;
|
||||
var virtualHostConfig = ExampleConf1;
|
||||
_augeas.PrintPreview(virtualHostConfig);
|
||||
Assert.Pass();
|
||||
}
|
||||
|
@ -107,4 +118,5 @@ public class AugeasTests
|
|||
Assert.That(sites.Length > 0);
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -20,6 +20,10 @@ public class Node
|
|||
Path = path;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Write all pending changes to disk. Only files that had any changes made to them are written.
|
||||
/// </summary>
|
||||
/// <returns></returns>
|
||||
public bool Save()
|
||||
{
|
||||
return _augeas.Save();
|
||||
|
|
Loading…
Reference in New Issue