Inheritance: ProductModelBase
Example #1
0
        /// <summary>
        /// Convert a nettiers entity to the ws proxy entity.
        /// </summary>
        public static WsProxy.ProductModel Convert(Nettiers.AdventureWorks.Entities.ProductModel item)
        {
            WsProxy.ProductModel outItem = new WsProxy.ProductModel();
            outItem.ProductModelId     = item.ProductModelId;
            outItem.Name               = item.Name;
            outItem.CatalogDescription = item.CatalogDescription;
            outItem.Instructions       = item.Instructions;
            outItem.Rowguid            = item.Rowguid;
            outItem.ModifiedDate       = item.ModifiedDate;


            return(outItem);
        }
		/// <summary>
		/// Inserts a mock ProductModel entity into the database.
		/// </summary>
		private void Step_01_Insert_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				mock = CreateMockInstance(tm);
				Assert.IsTrue(DataRepository.ProductModelProvider.Insert(tm, mock), "Insert failed");
										
				System.Console.WriteLine("DataRepository.ProductModelProvider.Insert(mock):");			
				System.Console.WriteLine(mock);			
				
				//normally one would commit here
				//tm.Commit();
				//IDisposable will Rollback Transaction since it's left uncommitted
			}
		}
Example #3
0
        /// <summary>
        /// Convert a nettiers collection to the ws proxy collection.
        /// </summary>
        public static Nettiers.AdventureWorks.Entities.ProductModel Convert(Nettiers.AdventureWorks.Entities.ProductModel outItem, WsProxy.ProductModel item)
        {
            if (item != null && outItem != null)
            {
                outItem.ProductModelId     = item.ProductModelId;
                outItem.Name               = item.Name;
                outItem.CatalogDescription = item.CatalogDescription;
                outItem.Instructions       = item.Instructions;
                outItem.Rowguid            = item.Rowguid;
                outItem.ModifiedDate       = item.ModifiedDate;

                outItem.AcceptChanges();
            }

            return(outItem);
        }
Example #4
0
        /// <summary>
        ///     Inserts a Nettiers.AdventureWorks.Entities.ProductModel object into the datasource using a transaction.
        /// </summary>
        /// <param name="transactionManager"><see cref="TransactionManager"/> object</param>
        /// <param name="entity">Nettiers.AdventureWorks.Entities.ProductModel object to insert.</param>
        /// <remarks></remarks>
        /// <returns>Returns true if operation is successful.</returns>
        public override bool Insert(TransactionManager transactionManager, Nettiers.AdventureWorks.Entities.ProductModel entity)
        {
            WsProxy.AdventureWorksServices proxy = new WsProxy.AdventureWorksServices();
            proxy.Url = Url;

            try
            {
                WsProxy.ProductModel result = proxy.ProductModelProvider_Insert(Convert(entity));
                Convert(entity, result);
                return(true);
            }
            catch (SoapException soex)
            {
                System.Diagnostics.Debug.WriteLine(soex);
                throw soex;
            }
            catch (Exception ex)
            {
                System.Diagnostics.Debug.WriteLine(ex);
                throw ex;
            }
        }
Example #5
0
 /// <summary>
 /// Convert a nettiers collection to the ws proxy collection.
 /// </summary>
 public static Nettiers.AdventureWorks.Entities.ProductModel Convert(WsProxy.ProductModel item)
 {
     Nettiers.AdventureWorks.Entities.ProductModel outItem = item == null ? null : new Nettiers.AdventureWorks.Entities.ProductModel();
     Convert(outItem, item);
     return(outItem);
 }
		///<summary>
		///  Update the Typed ProductModel Entity with modified mock values.
		///</summary>
		static public void UpdateMockInstance_Generated(TransactionManager tm, ProductModel mock)
		{
			mock.Name = TestUtility.Instance.RandomString(24, false);;
			mock.CatalogDescription = "<test></test>";
			mock.Instructions = "<test></test>";
			mock.ModifiedDate = TestUtility.Instance.RandomDateTime();
			
		}
		/// <summary>
		/// Test methods exposed by the EntityHelper class.
		/// </summary>
		private void Step_20_TestEntityHelper_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				mock = CreateMockInstance(tm);
				
				ProductModel entity = mock.Copy() as ProductModel;
				entity = (ProductModel)mock.Clone();
				Assert.IsTrue(ProductModel.ValueEquals(entity, mock), "Clone is not working");
			}
		}
		///<summary>
		///  Returns a Typed ProductModel Entity with mock values.
		///</summary>
		static public ProductModel CreateMockInstance_Generated(TransactionManager tm)
		{		
			ProductModel mock = new ProductModel();
						
			mock.Name = TestUtility.Instance.RandomString(24, false);;
			mock.CatalogDescription = "<test></test>";
			mock.Instructions = "<test></test>";
			mock.ModifiedDate = TestUtility.Instance.RandomDateTime();
			
		
			// create a temporary collection and add the item to it
			TList<ProductModel> tempMockCollection = new TList<ProductModel>();
			tempMockCollection.Add(mock);
			tempMockCollection.Remove(mock);
			
		
		   return (ProductModel)mock;
		}
		/// <summary>
		/// Serialize a ProductModel 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_ProductModelCollection.xml");
				
				mock = CreateMockInstance(tm);
				TList<ProductModel> mockCollection = new TList<ProductModel>();
				mockCollection.Add(mock);
			
				EntityHelper.SerializeXml(mockCollection, fileName);
				
				Assert.IsTrue(System.IO.File.Exists(fileName), "Serialized mock collection not found");
				System.Console.WriteLine("TList<ProductModel> correctly serialized to a temporary file.");					
			}
		}
		/// <summary>
		/// Serialize the mock ProductModel 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_ProductModel.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>
		/// Deep load all ProductModel children.
		/// </summary>
		private void Step_03_DeepLoad_Generated()
		{
			using (TransactionManager tm = CreateTransaction())
			{
				int count = -1;
				mock =  CreateMockInstance(tm);
				mockCollection = DataRepository.ProductModelProvider.GetPaged(tm, 0, 10, out count);
			
				DataRepository.ProductModelProvider.DeepLoading += new EntityProviderBaseCore<ProductModel, ProductModelKey>.DeepLoadingEventHandler(
						delegate(object sender, DeepSessionEventArgs e)
						{
							if (e.DeepSession.Count > 3)
								e.Cancel = true;
						}
					);

				if (mockCollection.Count > 0)
				{
					
					DataRepository.ProductModelProvider.DeepLoad(tm, mockCollection[0]);
					System.Console.WriteLine("ProductModel instance correctly deep loaded at 1 level.");
									
					mockCollection.Add(mock);
					// DataRepository.ProductModelProvider.DeepSave(tm, mockCollection);
				}
				
				//normally one would commit here
				//tm.Commit();
				//IDisposable will Rollback Transaction since it's left uncommitted
			}
		}
Example #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(ProductModel mock)
        {
            //Code your changes to the data object here.
            mock.CatalogDescription = null;
            mock.Instructions = null;
        }
Example #13
0
        ///<summary>
        ///  Update the Typed ProductModel Entity with modified mock values.
        ///</summary>
        static public void UpdateMockInstance(TransactionManager tm, ProductModel mock)
        {
            ProductModelTest.UpdateMockInstance_Generated(tm, mock);
            
			// make any alterations necessary 
            // (i.e. for DB check constraints, special test cases, etc.)
			SetSpecialTestData(mock);
        }