/// <summary>
        /// Deep load all TestTimestamp children.
        /// </summary>
        private void Step_03_DeepLoad_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                int count = -1;
                mock           = CreateMockInstance(tm);
                mockCollection = DataRepository.TestTimestampProvider.GetPaged(tm, 0, 10, out count);

                DataRepository.TestTimestampProvider.DeepLoading += new EntityProviderBaseCore <TestTimestamp, TestTimestampKey> .DeepLoadingEventHandler(
                    delegate(object sender, DeepSessionEventArgs e)
                {
                    if (e.DeepSession.Count > 3)
                    {
                        e.Cancel = true;
                    }
                }
                    );

                if (mockCollection.Count > 0)
                {
                    DataRepository.TestTimestampProvider.DeepLoad(tm, mockCollection[0]);
                    System.Console.WriteLine("TestTimestamp instance correctly deep loaded at 1 level.");

                    mockCollection.Add(mock);
                    // DataRepository.TestTimestampProvider.DeepSave(tm, mockCollection);
                }

                //normally one would commit here
                //tm.Commit();
                //IDisposable will Rollback Transaction since it's left uncommitted
            }
        }
Ejemplo n.º 2
0
        ///<summary>
        ///  Update the Typed TestTimestamp Entity with modified mock values.
        ///</summary>
        static public void UpdateMockInstance(TransactionManager tm, TestTimestamp mock)
        {
            TestTimestampTest.UpdateMockInstance_Generated(tm, mock);

            // make any alterations necessary
            // (i.e. for DB check constraints, special test cases, etc.)
            SetSpecialTestData(mock);
        }
        /// <summary>
        /// Check the foreign key dal methods.
        /// </summary>
        private void Step_10_FK_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                TestTimestamp entity = CreateMockInstance(tm);
                bool          result = DataRepository.TestTimestampProvider.Insert(tm, entity);

                Assert.IsTrue(result, "Could Not Test FK, Insert Failed");
            }
        }
        /// <summary>
        /// Test methods exposed by the EntityHelper class.
        /// </summary>
        private void Step_20_TestEntityHelper_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                mock = CreateMockInstance(tm);

                TestTimestamp entity = mock.Copy() as TestTimestamp;
                entity = (TestTimestamp)mock.Clone();
                Assert.IsTrue(TestTimestamp.ValueEquals(entity, mock), "Clone is not working");
            }
        }
Ejemplo n.º 5
0
        ///<summary>
        ///  Returns a Typed TestTimestamp Entity with mock values.
        ///</summary>
        static public TestTimestamp CreateMockInstance(TransactionManager tm)
        {
            // get the default mock instance
            TestTimestamp mock = TestTimestampTest.CreateMockInstance_Generated(tm);

            // make any alterations necessary
            // (i.e. for DB check constraints, special test cases, etc.)
            SetSpecialTestData(mock);

            // return the modified object
            return(mock);
        }
        /// <summary>
        /// Serialize the mock TestTimestamp entity into a temporary file.
        /// </summary>
        private void Step_06_SerializeEntity_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                mock = CreateMockInstance(tm);
                string fileName = System.IO.Path.Combine(System.IO.Path.GetTempPath(), "temp_TestTimestamp.xml");

                EntityHelper.SerializeXml(mock, fileName);
                Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock not found");

                System.Console.WriteLine("mock correctly serialized to a temporary file.");
            }
        }
        /// <summary>
        /// Inserts a mock TestTimestamp entity into the database.
        /// </summary>
        private void Step_01_Insert_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                mock = CreateMockInstance(tm);
                Assert.IsTrue(DataRepository.TestTimestampProvider.Insert(tm, mock), "Insert failed");

                System.Console.WriteLine("DataRepository.TestTimestampProvider.Insert(mock):");
                System.Console.WriteLine(mock);

                //normally one would commit here
                //tm.Commit();
                //IDisposable will Rollback Transaction since it's left uncommitted
            }
        }
        ///<summary>
        ///  Returns a Typed TestTimestamp Entity with mock values.
        ///</summary>
        static public TestTimestamp CreateMockInstance_Generated(TransactionManager tm)
        {
            TestTimestamp mock = new TestTimestamp();

            mock.DumbField = TestUtility.Instance.RandomBoolean();


            // create a temporary collection and add the item to it
            TList <TestTimestamp> tempMockCollection = new TList <TestTimestamp>();

            tempMockCollection.Add(mock);
            tempMockCollection.Remove(mock);


            return((TestTimestamp)mock);
        }
        /// <summary>
        /// Serialize a TestTimestamp collection into a temporary file.
        /// </summary>
        private void Step_08_SerializeCollection_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                string fileName = System.IO.Path.Combine(System.IO.Path.GetTempPath(), "temp_TestTimestampCollection.xml");

                mock = CreateMockInstance(tm);
                TList <TestTimestamp> mockCollection = new TList <TestTimestamp>();
                mockCollection.Add(mock);

                EntityHelper.SerializeXml(mockCollection, fileName);

                Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock collection not found");
                System.Console.WriteLine("TList<TestTimestamp> correctly serialized to a temporary file.");
            }
        }
        /// <summary>
        /// Test Find using the Query class
        /// </summary>
        private void Step_30_TestFindByQuery_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                //Insert Mock Instance
                TestTimestamp mock   = CreateMockInstance(tm);
                bool          result = DataRepository.TestTimestampProvider.Insert(tm, mock);

                Assert.IsTrue(result, "Could Not Test FindByQuery, Insert Failed");

                TestTimestampQuery query = new TestTimestampQuery();

                if (mock.DumbField != null)
                {
                    query.AppendEquals(TestTimestampColumn.DumbField, mock.DumbField.ToString());
                }

                TList <TestTimestamp> results = DataRepository.TestTimestampProvider.Find(tm, query);

                Assert.IsTrue(results.Count == 1, "Find is not working correctly.  Failed to find the mock instance");
            }
        }
Ejemplo n.º 11
0
 /// <summary>
 /// Make any alterations necessary (i.e. for DB check constraints, special test cases, etc.)
 /// </summary>
 /// <param name="mock">Object to be modified</param>
 static private void SetSpecialTestData(TestTimestamp mock)
 {
     //Code your changes to the data object here.
 }
 ///<summary>
 ///  Update the Typed TestTimestamp Entity with modified mock values.
 ///</summary>
 static public void UpdateMockInstance_Generated(TransactionManager tm, TestTimestamp mock)
 {
     mock.DumbField = TestUtility.Instance.RandomBoolean();
 }