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 113 114 115 116 117 118 119 120 121 122 123
|
/*-
* 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.Xml;
using NUnit.Framework;
using BerkeleyDB;
namespace CsharpAPITest
{
[TestFixture]
public class SequenceConfigTest : CSharpTestFixture
{
[TestFixtureSetUp]
public void SetUpTestFixture()
{
testFixtureName = "SequenceConfigTest";
base.SetUpTestfixture();
}
[Test]
public void TestConfig()
{
testName = "TestConfig";
SetUpTest(false);
SequenceConfig seqConfig = new SequenceConfig();
XmlElement xmlElem = Configuration.TestSetUp(
testFixtureName, testName);
Config(xmlElem, ref seqConfig, true);
Confirm(xmlElem, seqConfig, true);
}
[Test]
public void TestConfigObj()
{
testName = "TestConfigObj";
SetUpTest(true);
string dbFileName = testHome + "/" + testName + ".db";
// Open a database.
BTreeDatabaseConfig btreeDBConfig =
new BTreeDatabaseConfig();
btreeDBConfig.Creation = CreatePolicy.IF_NEEDED;
BTreeDatabase btreeDB = BTreeDatabase.Open(
dbFileName, btreeDBConfig);
/* Configure and initialize sequence. */
SequenceConfig seqConfig = new SequenceConfig();
seqConfig.BackingDatabase = btreeDB;
seqConfig.Creation = CreatePolicy.IF_NEEDED;
seqConfig.key = new DatabaseEntry(
ASCIIEncoding.ASCII.GetBytes("key"));
seqConfig.SetRange(Int64.MinValue, Int64.MaxValue);
Sequence seq = new Sequence(seqConfig);
// Confirm the objects set in SequenceConfig.
Assert.AreEqual(dbFileName,
seq.BackingDatabase.FileName);
Assert.AreEqual(ASCIIEncoding.ASCII.GetBytes("key"),
seq.Key.Data);
Assert.AreEqual(Int64.MinValue, seq.Min);
Assert.AreEqual(Int64.MaxValue, seq.Max);
/* Close sequence, database and environment. */
seq.Close();
btreeDB.Close();
}
public static void Confirm(XmlElement xmlElement,
SequenceConfig seqConfig, bool compulsory)
{
Configuration.ConfirmInt(xmlElement, "CacheSize",
seqConfig.CacheSize, compulsory);
Configuration.ConfirmCreatePolicy(xmlElement, "Creation",
seqConfig.Creation, compulsory);
Configuration.ConfirmBool(xmlElement, "Decrement",
seqConfig.Decrement, compulsory);
Configuration.ConfirmBool(xmlElement, "FreeThreaded",
seqConfig.FreeThreaded, compulsory);
Configuration.ConfirmBool(xmlElement, "Increment",
seqConfig.Increment, compulsory);
Configuration.ConfirmLong(xmlElement, "InitialValue",
seqConfig.InitialValue, compulsory);
Configuration.ConfirmBool(xmlElement, "Wrap",
seqConfig.Wrap, compulsory);
}
public static void Config(XmlElement xmlElement,
ref SequenceConfig seqConfig, bool compulsory)
{
int intValue = new int();
bool boolValue = new bool();
long longValue = new long();
if (Configuration.ConfigInt(xmlElement, "CacheSize",
ref intValue, compulsory))
seqConfig.CacheSize = intValue;
Configuration.ConfigCreatePolicy(xmlElement, "Creation",
ref seqConfig.Creation, compulsory);
if (Configuration.ConfigBool(xmlElement, "Decrement",
ref boolValue, compulsory))
seqConfig.Decrement = boolValue;
Configuration.ConfigBool(xmlElement, "FreeThreaded",
ref seqConfig.FreeThreaded, compulsory);
if (Configuration.ConfigBool(xmlElement, "Increment",
ref boolValue, compulsory))
seqConfig.Increment = boolValue;
if (Configuration.ConfigLong(xmlElement, "InitialValue",
ref longValue, compulsory))
seqConfig.InitialValue = longValue;
Configuration.ConfigBool(xmlElement, "Wrap",
ref seqConfig.Wrap, compulsory);
}
}
}
|