1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2009, 2013 Oracle and/or its affiliates. All rights reserved.
*
*/
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Threading;
using System.Xml;
using NUnit.Framework;
using BerkeleyDB;
namespace CsharpAPITest
{
[TestFixture]
public class SecondaryRecnoDatabaseConfigTest : CSharpTestFixture
{
[TestFixtureSetUp]
public void SetUpTestFixture()
{
testFixtureName = "SecondaryRecnoDatabaseConfigTest";
base.SetUpTestfixture();
}
[Test]
public void TestConfig()
{
testName = "TestConfig";
SetUpTest(true);
string dbFileName = testHome + "/" + testName + ".db";
XmlElement xmlElem = Configuration.TestSetUp(
testFixtureName, testName);
// Open a primary btree database.
RecnoDatabaseConfig recDBConfig =
new RecnoDatabaseConfig();
recDBConfig.Creation = CreatePolicy.IF_NEEDED;
RecnoDatabase recDB = RecnoDatabase.Open(
dbFileName, recDBConfig);
SecondaryRecnoDatabaseConfig secDBConfig =
new SecondaryRecnoDatabaseConfig(recDB, null);
Config(xmlElem, ref secDBConfig, true);
Confirm(xmlElem, secDBConfig, true);
// Close the primary btree database.
recDB.Close();
}
public static void Confirm(XmlElement xmlElement,
SecondaryRecnoDatabaseConfig secRecDBConfig,
bool compulsory)
{
SecondaryDatabaseConfig secDBConfig =
secRecDBConfig;
SecondaryDatabaseConfigTest.Confirm(xmlElement,
secDBConfig, compulsory);
// Confirm secondary hash database specific configuration.
Configuration.ConfirmString(xmlElement, "BackingFile",
secRecDBConfig.BackingFile, compulsory);
Configuration.ConfirmCreatePolicy(xmlElement, "Creation",
secRecDBConfig.Creation, compulsory);
Configuration.ConfirmInt(xmlElement, "Delimiter",
secRecDBConfig.Delimiter, compulsory);
Configuration.ConfirmUint(xmlElement, "Length",
secRecDBConfig.Length, compulsory);
Configuration.ConfirmInt(xmlElement, "PadByte",
secRecDBConfig.PadByte, compulsory);
Configuration.ConfirmBool(xmlElement, "Renumber",
secRecDBConfig.Renumber, compulsory);
Configuration.ConfirmBool(xmlElement, "Snapshot",
secRecDBConfig.Snapshot, compulsory);
}
public static void Config(XmlElement xmlElement,
ref SecondaryRecnoDatabaseConfig secRecDBConfig,
bool compulsory)
{
int intValue = new int();
uint uintValue = new uint();
SecondaryDatabaseConfig secDBConfig = secRecDBConfig;
SecondaryDatabaseConfigTest.Config(xmlElement,
ref secDBConfig, compulsory);
// Configure specific fields/properties of Recno database
Configuration.ConfigCreatePolicy(xmlElement, "Creation",
ref secRecDBConfig.Creation, compulsory);
if (Configuration.ConfigInt(xmlElement, "Delimiter",
ref intValue, compulsory))
secRecDBConfig.Delimiter = intValue;
if (Configuration.ConfigUint(xmlElement, "Length",
ref uintValue, compulsory))
secRecDBConfig.Length = uintValue;
if (Configuration.ConfigInt(xmlElement, "PadByte",
ref intValue, compulsory))
secRecDBConfig.PadByte = intValue;
Configuration.ConfigBool(xmlElement, "Renumber",
ref secRecDBConfig.Renumber, compulsory);
Configuration.ConfigBool(xmlElement, "Snapshot",
ref secRecDBConfig.Snapshot, compulsory);
}
}
}
|