Inheritance: System.Web.UI.Page
Ejemplo n.º 1
0
        /// <summary>
        /// Deep load all TimestampPk children.
        /// </summary>
        private void Step_03_DeepLoad_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                int count = -1;
                mock           = CreateMockInstance(tm);
                mockCollection = DataRepository.TimestampPkProvider.GetPaged(tm, 0, 10, out count);

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

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

                    mockCollection.Add(mock);
                    // DataRepository.TimestampPkProvider.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 TimestampPk Entity with modified mock values.
        ///</summary>
        static public void UpdateMockInstance(TransactionManager tm, TimestampPk mock)
        {
            TimestampPkTest.UpdateMockInstance_Generated(tm, mock);

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

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

                TimestampPk entity = mock.Copy() as TimestampPk;
                entity = (TimestampPk)mock.Clone();
                Assert.IsTrue(TimestampPk.ValueEquals(entity, mock), "Clone is not working");
            }
        }
Ejemplo n.º 5
0
        ///<summary>
        ///  Returns a Typed TimestampPk Entity with mock values.
        ///</summary>
        static public TimestampPk CreateMockInstance(TransactionManager tm)
        {
            // get the default mock instance
            TimestampPk mock = TimestampPkTest.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);
        }
Ejemplo n.º 6
0
        /// <summary>
        /// Serialize the mock TimestampPk 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_TimestampPk.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.");
            }
        }
Ejemplo n.º 7
0
        /// <summary>
        /// Inserts a mock TimestampPk entity into the database.
        /// </summary>
        private void Step_01_Insert_Generated()
        {
            using (TransactionManager tm = CreateTransaction())
            {
                mock = CreateMockInstance(tm);
                Assert.IsTrue(DataRepository.TimestampPkProvider.Insert(tm, mock), "Insert failed");

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

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

            mock.SomeText = TestUtility.Instance.RandomString(24, false);;


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

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


            return((TimestampPk)mock);
        }
Ejemplo n.º 9
0
        /// <summary>
        /// Serialize a TimestampPk 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_TimestampPkCollection.xml");

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

                EntityHelper.SerializeXml(mockCollection, fileName);

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

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

                TimestampPkQuery query = new TimestampPkQuery();

                if (mock.SomeText != null)
                {
                    query.AppendEquals(TimestampPkColumn.SomeText, mock.SomeText.ToString());
                }

                TList <TimestampPk> results = DataRepository.TimestampPkProvider.Find(tm, query);

                Assert.IsTrue(results.Count == 1, "Find is not working correctly.  Failed to find the mock instance");
            }
        }
Ejemplo n.º 11
0
 ///<summary>
 ///  Update the Typed TimestampPk Entity with modified mock values.
 ///</summary>
 static public void UpdateMockInstance_Generated(TransactionManager tm, TimestampPk mock)
 {
     mock.SomeText = TestUtility.Instance.RandomString(24, false);;
 }
Ejemplo n.º 12
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(TimestampPk mock)
 {
     //Code your changes to the data object here.
 }