Files
yallie 9fa3874800 Added the contents of the archive.
Moved the original file to the archive subfolder.
2017-11-20 16:11:42 +03:00

184 lines
5.2 KiB
C#

// ==++==
//
//
// Copyright (c) 2002 Microsoft Corporation. All rights reserved.
//
// The use and distribution terms for this software are contained in the file
// named license.txt, which can be found in the root of this distribution.
// By using this software in any fashion, you are agreeing to be bound by the
// terms of this license.
//
// You must not remove this notice, or any other, from this software.
//
//
// ==--==
using System.IO;
using System;
using System.Collections;
public class Co6045GetHashCode
{
public static String s_strActiveBugNums = "";
public static String s_strDtTmVer = "";
public static String s_strLastModCoder = "";
public static String s_strOrigCoder = "";
public static String s_strComponentBeingTested
= "UInt64.GetHashCode";
public static String s_strTFName = "Co6045GetHashCode.cs";
public static String s_strTFAbbrev = "Co6045";
public static String s_strTFPath = "";
int iCountErrors = 0;
int iCountTestcases = 0;
String m_strLoc="Loc_beforeRun";
public Boolean runTest()
{
int max = 0;
Hashtable hDup = new Hashtable ();
Console.WriteLine( s_strTFPath +" "+ s_strTFName +" ,for "+ s_strComponentBeingTested +" ,Source ver "+ s_strDtTmVer );
try
{
m_strLoc = "Loc_normalTests";
UInt64 testUI;
XenoUInt64 xeno = new XenoUInt64();
UInt64 i;
while( xeno.HasMoreValues() )
{
i = (UInt64) xeno.GetNextValue();
testUI = (UInt64) i;
iCountTestcases++;
if (testUI.GetHashCode() != ( ((int)testUI) ^ (int)(testUI >> 32) ) )
{
iCountErrors++;
Console.WriteLine( "ERROR Err_9284pp: The Hash code for " + i + " is negative ");
}
try
{
hDup.Add (testUI.GetHashCode(), 0);
}
catch(ArgumentException argexc)
{
hDup[testUI.GetHashCode()] = (int) hDup[testUI.GetHashCode()] + 1;
if ((int) hDup[testUI.GetHashCode()] > max)
{
max = (int)hDup[testUI.GetHashCode()];
}
}
}
Console.WriteLine ("INFO: In_893 Maximum Duplicate hash codes that exist: " + max);
if (max > 5)
{
iCountErrors++;
Console.WriteLine( "ERROR Err_9284zz: TOO MANY DUPLICATE HASH CODES");
}
}
catch( Exception exc_general )
{
++iCountErrors;
Console.WriteLine( "Error Err_8888yyy ("+ s_strTFAbbrev +")! Unexpected exception thrown sometime after m_strLoc=="+ m_strLoc +" ,exc_general=="+ exc_general );
}
Console.Write(Environment.NewLine);
Console.WriteLine( "Total Tests Ran: " + iCountTestcases + " Failed Tests: " + iCountErrors );
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;
}
}
public void ErrorCode( String erk ) {
m_strLoc = m_strLoc + " tested function produced <" + erk + ">";
throw new Exception( "Test failed." );
}
public void ErrorCode() {
throw new Exception( "Test failed." );
}
public static void Main( String[] args )
{
Environment.ExitCode = 1;
Boolean bResult = false;
Co6045GetHashCode cbX = new Co6045GetHashCode();
try
{
bResult = cbX.runTest();
}
catch ( Exception exc_main )
{
bResult = false;
Console.WriteLine( "FAiL! Error Err_9999zzz ("+ s_strTFAbbrev +")! Uncaught Exception caught fell to Main(), exc_main=="+ exc_main );
}
if ( ! bResult )
{
Console.WriteLine( s_strTFPath + s_strTFName );
Console.WriteLine( " " );
Console.WriteLine( "FAiL! "+ s_strTFAbbrev );
Console.WriteLine( " " );
}
if ( bResult == true ) Environment.ExitCode = 0; else Environment.ExitCode = 1;
}
}
public class XenoUInt64 {
Double LowEpsilon =.85;
Double HighEpsilon = .85;
Boolean LowFinished;
Boolean HighFinished;
Boolean AllFinished;
UInt64 Minimum;
UInt64 Maximum;
UInt64 CurrentMid;
public Boolean IsValidMid() {
UInt64 m = Minimum;
UInt64 M = Maximum;
if ( m > M ) throw new ArgumentException( "Xeno:Min > Max");
while ( m < 0 ) {
M = M + 1;
M = M + 1;
}
while ( m > 0 ) {
m = m -1;
m = m -1;
}
CurrentMid = UInt64.Parse( ((M-m)/2).ToString() );
return true;
}
public XenoUInt64() {
LowFinished = false;
HighFinished = false;
AllFinished = false;
Minimum = UInt64.MinValue;
Maximum = UInt64.MaxValue;
if ( IsValidMid() == false ) AllFinished = true;
}
public Boolean HasMoreValues() {
return ( !AllFinished );
}
public UInt64 GetNextValue() {
if ( AllFinished == false ) {
if ( LowFinished == false ) {
CurrentMid = (UInt64) (Convert.ToDouble(CurrentMid)*LowEpsilon);
if ( CurrentMid <= 0 ) {
IsValidMid();
LowFinished = true;
return Minimum;
}
return UInt64.Parse( (Minimum + CurrentMid).ToString() );
}
if ( HighFinished == false ) {
CurrentMid = (UInt64) (Convert.ToDouble(CurrentMid)*HighEpsilon);
if ( CurrentMid <= 0 ) {
IsValidMid();
HighFinished = true;
return Maximum;
}
return UInt64.Parse( (Maximum - CurrentMid).ToString() );
}
AllFinished = true;
IsValidMid();
return CurrentMid;
}
throw new OverflowException( "No more values in Range" );
}
}