- using Perforce.P4;
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using System;
- using System.Collections.Generic;
- namespace p4api.net.unit.test
- {
- /// <summary>
- ///This is a test class for GroupTest and is intended
- ///to contain all GroupTest Unit Tests
- ///</summary>
- [TestClass()]
- public class GroupTest
- {
- private TestContext testContextInstance;
- /// <summary>
- ///Gets or sets the test context which provides
- ///information about and functionality for the current test run.
- ///</summary>
- public TestContext TestContext
- {
- get
- {
- return testContextInstance;
- }
- set
- {
- testContextInstance = value;
- }
- }
- #region Additional test attributes
- //
- //You can use the following additional attributes as you write your tests:
- //
- //Use ClassInitialize to run code before running the first test in the class
- //[ClassInitialize()]
- //public static void MyClassInitialize(TestContext testContext)
- //{
- //}
- //
- //Use ClassCleanup to run code after all tests in a class have run
- //[ClassCleanup()]
- //public static void MyClassCleanup()
- //{
- //}
- //
- //Use TestInitialize to run code before running each test
- //[TestInitialize()]
- //public void MyTestInitialize()
- //{
- //}
- //
- //Use TestCleanup to run code after each test has run
- //[TestCleanup()]
- //public void MyTestCleanup()
- //{
- //}
- //
- #endregion
- private static String GroupSpec =
- "Group:\tTest\r\n" +
- "\r\n" +
- "MaxResults:\t100\r\n" +
- "\r\n" +
- "MaxScanRows:\t10\r\n" +
- "\r\n" +
- "MaxLockTime:\t20\r\n" +
- "\r\n" +
- "Timeout:\t30\r\n" +
- "\r\n" +
- "PasswordTimeout:\t40\r\n" +
- "\r\n" +
- "Subgroups:\r\n"+
- "\tSG1\r\n" +
- "\tSG2\r\n" +
- "\r\n" +
- "Owners:\r\n"+
- "\tAlpha\r\n" +
- "\tBeta\r\n" +
- "\r\n" +
- "Users:\r\n"+
- "\tAlice\r\n"+
- "\tBob\r\n";
- /// <summary>
- ///A test for Parse
- ///</summary>
- [TestMethod()]
- public void ParseTest()
- {
- Group target = new Group();
- string spec = GroupSpec;
- bool expected = true;
- bool actual;
- actual = target.Parse(spec);
- Assert.AreEqual(expected, actual);
- Assert.AreEqual(target.TimeOut, 30);
- Assert.AreEqual(target.OwnerNames[0], "Alpha");
- Assert.AreEqual(target.Id, "Test");
- Assert.AreEqual(target.MaxResults, 100);
- Assert.AreEqual(target.MaxScanRows, 10);
- Assert.AreEqual(target.MaxLockTime, 20);
- Assert.AreEqual(target.TimeOut, 30);
- Assert.AreEqual(target.PasswordTimeout, 40);
- Assert.AreEqual(target.OwnerNames[0], "Alpha");
- Assert.AreEqual(target.OwnerNames[1], "Beta");
- Assert.AreEqual(target.UserNames[0], "Alice");
- Assert.AreEqual(target.UserNames[1], "Bob");
- Assert.AreEqual(target.SubGroups[0], "SG1");
- Assert.AreEqual(target.SubGroups[1], "SG2");
- }
- /// <summary>
- ///A test for ToString
- ///</summary>
- [TestMethod()]
- public void ToStringTest()
- {
- Group target = new Group();
- target.Id = "Test";
- target.MaxResults = 100;
- target.MaxScanRows = 10;
- target.MaxLockTime = 20;
- target.TimeOut = 30;
- target.PasswordTimeout = 40;
- target.OwnerNames = new List<string>() { "Alpha", "Beta" };
- target.UserNames = new List<string>() { "Alice", "Bob" };
- target.SubGroups = new List<string>() { "SG1", "SG2" };
- string expected = GroupSpec.Trim(); // TODO: Initialize to an appropriate value
- string actual;
- actual = target.ToString().Trim();
- Assert.AreEqual(expected, actual);
- }
- /// <summary>
- ///A test for FromGroupCmdTaggedOutput
- ///</summary>
- [TestMethod()]
- public void FromGroupCmdTaggedOutputTest()
- {
- Group target = new Group(); // TODO: Initialize to an appropriate value
- TaggedObject objectInfo = new TaggedObject(); // TODO: Initialize to an appropriate value
- objectInfo["Group"] = "Test";
- objectInfo["MaxResults"] = "100";
- objectInfo["MaxScanRows"] = "10";
- objectInfo["MaxLockTime"] = "20";
- objectInfo["Timeout"] = "30";
- objectInfo["PasswordTimeout"] = "40";
- objectInfo["Users0"] = "Alice";
- objectInfo["Users1"] = "Bob";
- objectInfo["Owners0"] = "Alpha";
- objectInfo["Owners1"] = "Beta";
- objectInfo["SubGroups0"] = "SG1";
- objectInfo["SubGroups1"] = "SG2";
- target.FromGroupCmdTaggedOutput(objectInfo);
- Assert.AreEqual(target.Id, "Test");
- Assert.AreEqual(target.MaxResults, 100);
- Assert.AreEqual(target.MaxScanRows, 10);
- Assert.AreEqual(target.MaxLockTime, 20);
- Assert.AreEqual(target.TimeOut, 30);
- Assert.AreEqual(target.PasswordTimeout, 40);
- Assert.AreEqual(target.OwnerNames[0], "Alpha");
- Assert.AreEqual(target.OwnerNames[1], "Beta");
- Assert.AreEqual(target.UserNames[0], "Alice");
- Assert.AreEqual(target.UserNames[1], "Bob");
- Assert.AreEqual(target.SubGroups[0], "SG1");
- Assert.AreEqual(target.SubGroups[1], "SG2");
- }
- }
- }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 13946 | OmegaNemesis28 | Merging //guest/perforce_software/p4api.net/... to //guest/omeganemesis28/p4api.net/...... « |
10 years ago | |
//guest/perforce_software/p4api.net/p4api.net-unit-test/GroupTest.cs | |||||
#1 | 12254 | Bill | Update Workshop version with 2015.1 GA of p4api.net | 10 years ago |