public bool runTest()
	{
		Console.WriteLine(s_strTFPath + " " + s_strTFName + " , for " + s_strClassMethod + " , Source ver : " + s_strDtTmVer);
		int iCountErrors = 0;
		int iCountTestcases = 0;
		String strLoc = "Loc_000oo";
		ObjectManager objmgr1 = null;
		StreamingContext sc1 = new StreamingContext(StreamingContextStates.All);
		ObjectIDGenerator objid1 = null;
		Int64 iRootID;
		Int64 iChildID;
		bool fFirstTime;
		String[] strArr;
		String strToBeFixed;
		TestArrayFixup[] arrTst1;
		TestArrayFixup tst1;
		Int32[] indices;
		String[,] multiArr;
		String anotherString;
		Int64 anotherStringId;
		try {
			do
			{
				strLoc = "Loc_9457and";
				strArr = new String[1];
				strToBeFixed = "Hello World";
				indices = new Int32[1];
				indices[0] = 0;
				objid1 = new ObjectIDGenerator();
				iRootID = objid1.GetId(strArr, out fFirstTime);
				iChildID = objid1.GetId(strToBeFixed, out fFirstTime);
				objmgr1 = new ObjectManager(null, sc1);
				objmgr1.RecordArrayElementFixup(iRootID, indices, iChildID);
				objmgr1.RegisterObject(strArr, iRootID);
				objmgr1.RegisterObject(strToBeFixed, iChildID);
				iCountTestcases++;
				if(!strArr[0].Equals(strToBeFixed))
				{
					iCountErrors++;
					Console.WriteLine("Err_0452fsd! Expected value not returned, " + strArr[0] + ", expected, " + strToBeFixed);
				}
				objmgr1.DoFixups();
				strLoc = "Loc_017ged";
				iCountTestcases++;
				if(!strArr[0].Equals(strToBeFixed))
				{
					iCountErrors++;
					Console.WriteLine("Err_90453vdf! Expected value not returned, " + strArr[0] + ", expected, " + strToBeFixed);
				}
				multiArr = new String[5, 10];
				indices = new Int32[2];
				indices[0] = 1;
				indices[1] = 5;
				objid1 = new ObjectIDGenerator();
				iRootID = objid1.GetId(multiArr, out fFirstTime);
				strToBeFixed = "Hello World";
				iChildID = objid1.GetId(strToBeFixed, out fFirstTime);
				objmgr1 = new ObjectManager(null, sc1);
				objmgr1.RecordArrayElementFixup(iRootID, indices, iChildID);
				objmgr1.RegisterObject(multiArr, iRootID);
				objmgr1.RegisterObject(strToBeFixed, iChildID);
				iCountTestcases++;
				if(!multiArr[1, 5].Equals(strToBeFixed)){
					iCountErrors++;
					Console.WriteLine("Err_79435sdg_! Expected value not returned, " + multiArr[1,5] + ", expected, " + strToBeFixed);
				}
				strLoc = "Loc_1294cd";
				arrTst1 = new TestArrayFixup[10];
				tst1 = new TestArrayFixup();
				indices = new Int32[1];
				indices[0] = 5;
				objid1 = new ObjectIDGenerator();
				iRootID = objid1.GetId(arrTst1, out fFirstTime);
				iChildID = objid1.GetId(tst1, out fFirstTime);
				objmgr1 = new ObjectManager(null, sc1);
				objmgr1.RecordArrayElementFixup(iRootID, indices, iChildID);
				objmgr1.RegisterObject(arrTst1, iRootID);
				objmgr1.RegisterObject(tst1, iChildID);
				iCountTestcases++;
				if(arrTst1[5].iValue != tst1.iValue)
				{
					iCountErrors++;
					Console.WriteLine("Err_112sx! Expected value not returned, " + arrTst1[5].iValue + ", expected, " + tst1.iValue);
				}
				objmgr1.DoFixups();
				strLoc = "Loc_017ged";
				iCountTestcases++;
				if(arrTst1[5].iValue != tst1.iValue)
				{
					iCountErrors++;
					Console.WriteLine("Err_2048cd! Expected value not returned, " + arrTst1[5].iValue + ", expected, " + tst1.iValue);
				}
				strLoc = "Loc_83476tsg";
				iCountTestcases++;
				strArr = new String[1];
				strToBeFixed = "Hello World";
				indices = new Int32[2];
				indices[0] = 0;
				indices[1] = 0;
				objid1 = new ObjectIDGenerator();
				iRootID = objid1.GetId(strArr, out fFirstTime);
				iChildID = objid1.GetId(strToBeFixed, out fFirstTime);
				objmgr1 = new ObjectManager(null, sc1);
				objmgr1.RecordArrayElementFixup(iRootID, indices, iChildID);
				objmgr1.RegisterObject(strArr, iRootID);
				try{
					objmgr1.RegisterObject(strToBeFixed, iChildID);
					iCountErrors++;
					Console.WriteLine("Err_0452fsd! Exception not thrown");
				}catch(ArgumentException){
				}catch(Exception ex){
					iCountErrors++;
					Console.WriteLine("Err_0452fsd! Wrong Exception thrown, " + ex.GetType().Name);
				}
				strLoc = "Loc_9457and";
				iCountTestcases++;
				strArr = new String[5];
				strToBeFixed = "Hello World";
				indices = new Int32[1];
				indices[0] = 0;
				objid1 = new ObjectIDGenerator();
				iRootID = objid1.GetId(strArr, out fFirstTime);
				iChildID = objid1.GetId(strToBeFixed, out fFirstTime);
				anotherString = "Another String";
				anotherStringId = objid1.GetId(anotherString, out fFirstTime);
				objmgr1 = new ObjectManager(null, sc1);
				objmgr1.RecordArrayElementFixup(iRootID, indices, iChildID);
				objmgr1.RegisterObject(strArr, iRootID);
				objmgr1.RegisterObject(anotherString, anotherStringId);
				try{
					objmgr1.DoFixups();
					iCountErrors++;
					Console.WriteLine("Err_0452fsd! Exception not thrown");
				}catch(SerializationException){
				}catch(Exception ex){
					iCountErrors++;
					Console.WriteLine("Err_0452fsd! Wrong Exception thrown, " + ex.GetType().Name);
				}
				try {
					iCountTestcases++;
					objmgr1.RecordArrayElementFixup(-1, indices, iChildID);
					iCountErrors++;
					Console.WriteLine("Err_034cd! exception not thrown");
					}catch(ArgumentOutOfRangeException){
					}catch(Exception ex){
					iCountErrors++;
					Console.WriteLine("Err_034cd! Unexpected exception, " + ex.ToString());
				}
				try {
					iCountTestcases++;
					objmgr1.RecordArrayElementFixup(2, indices, -5);
					iCountErrors++;
					Console.WriteLine("Err_943cdd! exception not thrown");
					}catch(ArgumentOutOfRangeException){
					}catch(Exception ex){
					iCountErrors++;
					Console.WriteLine("Err_0834csd! Unexpected exception, " + ex.ToString());
				}
				try {
					iCountTestcases++;
					indices = new Int32[1];
					indices[0] = -5;
					objmgr1.RecordArrayElementFixup(100, indices, 50);
					Console.WriteLine("Loc_943cdd! exception not thrown");
					}catch(Exception ex){
					iCountErrors++;
					Console.WriteLine("Err_8321sd! Unexpected exception, " + ex.ToString());
				}
			} while (false);
			} catch (Exception exc_general ) {
			++iCountErrors;
			Console.WriteLine (s_strTFAbbrev + " : Error Err_8888yyy!  strLoc=="+ strLoc +", exc_general==\n"+exc_general.ToString());
		}
		if ( iCountErrors == 0 )
		{
			Console.WriteLine( "paSs.   "+s_strTFPath +" "+s_strTFName+" ,iCountTestcases=="+iCountTestcases);
			return true;
		}
		else
		{
			Console.WriteLine("FAiL!   "+s_strTFPath+" "+s_strTFName+" ,iCountErrors=="+iCountErrors+" , BugNums?: "+s_strActiveBugNums );
			return false;
		}
	}
示例#2
0
    public bool runTest()
    {
        Console.WriteLine(s_strTFPath + " " + s_strTFName + " , for " + s_strClassMethod + " , Source ver : " + s_strDtTmVer);
        int               iCountErrors    = 0;
        int               iCountTestcases = 0;
        String            strLoc          = "Loc_000oo";
        ObjectManager     objmgr1         = null;
        StreamingContext  sc1             = new StreamingContext(StreamingContextStates.All);
        ObjectIDGenerator objid1          = null;
        Int64             iRootID;
        Int64             iChildID;
        bool              fFirstTime;

        String[] strArr;
        String   strToBeFixed;

        TestArrayFixup[] arrTst1;
        TestArrayFixup   tst1;
        Int32            indice;

        try {
            do
            {
                strLoc       = "Loc_9457and";
                strArr       = new String[1];
                strToBeFixed = "Hello World";
                indice       = 0;
                objid1       = new ObjectIDGenerator();
                iRootID      = objid1.GetId(strArr, out fFirstTime);
                iChildID     = objid1.GetId(strToBeFixed, out fFirstTime);
                objmgr1      = new ObjectManager(null, sc1);
                objmgr1.RecordArrayElementFixup(iRootID, indice, iChildID);
                objmgr1.RegisterObject(strArr, iRootID);
                objmgr1.RegisterObject(strToBeFixed, iChildID);
                iCountTestcases++;
                if (!strArr[0].Equals(strToBeFixed))
                {
                    iCountErrors++;
                    Console.WriteLine("Err_0452fsd! Expected value not returned, " + strArr[0] + ", expected, " + strToBeFixed);
                }
                objmgr1.DoFixups();
                strLoc = "Loc_017ged";
                iCountTestcases++;
                if (!strArr[0].Equals(strToBeFixed))
                {
                    iCountErrors++;
                    Console.WriteLine("Err_90453vdf! Expected value not returned, " + strArr[0] + ", expected, " + strToBeFixed);
                }
                strLoc   = "Loc_1294cd";
                arrTst1  = new TestArrayFixup[10];
                tst1     = new TestArrayFixup();
                indice   = 5;
                objid1   = new ObjectIDGenerator();
                iRootID  = objid1.GetId(arrTst1, out fFirstTime);
                iChildID = objid1.GetId(tst1, out fFirstTime);
                objmgr1  = new ObjectManager(null, sc1);
                objmgr1.RecordArrayElementFixup(iRootID, indice, iChildID);
                objmgr1.RegisterObject(arrTst1, iRootID);
                objmgr1.RegisterObject(tst1, iChildID);
                iCountTestcases++;
                if (arrTst1[5].iValue != tst1.iValue)
                {
                    iCountErrors++;
                    Console.WriteLine("Err_112sx! Expected value not returned, " + arrTst1[5].iValue + ", expected, " + tst1.iValue);
                }
                objmgr1.DoFixups();
                strLoc = "Loc_017ged";
                iCountTestcases++;
                if (arrTst1[5].iValue != tst1.iValue)
                {
                    iCountErrors++;
                    Console.WriteLine("Err_2048cd! Expected value not returned, " + arrTst1[5].iValue + ", expected, " + tst1.iValue);
                }
                try {
                    iCountTestcases++;
                    objmgr1.RecordArrayElementFixup(-1, 5, iChildID);
                    iCountErrors++;
                    Console.WriteLine("Err_034cd! exception not thrown");
                }catch (ArgumentOutOfRangeException) {
                }catch (Exception ex) {
                    iCountErrors++;
                    Console.WriteLine("Err_034cd! Unexpected exception, " + ex.ToString());
                }
                try {
                    iCountTestcases++;
                    objmgr1.RecordArrayElementFixup(2, 5, -5);
                    iCountErrors++;
                    Console.WriteLine("Err_943cdd! exception not thrown");
                }catch (ArgumentOutOfRangeException) {
                }catch (Exception ex) {
                    iCountErrors++;
                    Console.WriteLine("Err_0834csd! Unexpected exception, " + ex.ToString());
                }
                try {
                    iCountTestcases++;
                    objmgr1.RecordArrayElementFixup(100, -5, 50);
                    Console.WriteLine("Loc_943cdd! exception not thrown");
                }catch (Exception ex) {
                    iCountErrors++;
                    Console.WriteLine("Err_8321sd! Unexpected exception, " + ex.ToString());
                }
            } while (false);
        } catch (Exception exc_general) {
            ++iCountErrors;
            Console.WriteLine(s_strTFAbbrev + " : Error Err_8888yyy!  strLoc==" + strLoc + ", exc_general==\n" + exc_general.ToString());
        }
        if (iCountErrors == 0)
        {
            Console.WriteLine("paSs.   " + s_strTFPath + " " + s_strTFName + " ,iCountTestcases==" + iCountTestcases);
            return(true);
        }
        else
        {
            Console.WriteLine("FAiL!   " + s_strTFPath + " " + s_strTFName + " ,iCountErrors==" + iCountErrors + " , BugNums?: " + s_strActiveBugNums);
            return(false);
        }
    }