-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMasterTest.cs
81 lines (79 loc) · 2.8 KB
/
MasterTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
//<summary>
// Title : Tests
// System : Microsoft Visual C# .NET 2005
// $LastChangedDate$
// $Rev$
// $LastChangedBy$
// $URL$
// $Id$
// History :
// 2007 - mpostol created
// <Author> - <date>:
// <description>
//
// Copyright (C)2006, CAS LODZ POLAND.
// TEL: +48 (42) 686 25 47
// mailto:techsupp@cas.com.pl
// http://www.cas.eu
//</summary>
using CAS.CommServer.ProtocolHub.Communication;
using CAS.CommServer.ProtocolHub.CommunicationUnitTests.Instrumentation;
using CAS.Lib.CommonBus;
using CAS.Lib.CommonBus.ApplicationLayer;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace CAS.CommServer.ProtocolHub.CommunicationUnitTests
{
/// <summary>
/// Master Test
/// </summary>
[TestClass()]
public class MasterTest
{
/// <summary>
/// Goes the test.
/// </summary>
[TestMethod]
public void GoTest()
{
FacadeApplicationLayerMaster m_Master = new FacadeApplicationLayerMaster();
string m_MasterToString = m_Master.ToString();
GuardedDataProvider m_gp = new GuardedDataProvider( "GoTest", m_Master );
string m_gpToString = m_gp.ToString();
Assert.AreEqual( m_gpToString, m_MasterToString, "ToString error" );
StringAddress m_address = new StringAddress("DummyAddress");
Assert.IsFalse( m_gp.Connected, "State error" );
m_gp.ConnectReq( m_address );
Assert.IsTrue( m_gp.Connected, "State error" );
FacadeBlockDescription m_block = new FacadeBlockDescription( int.MaxValue, 100, short.MaxValue );
IReadValue m_readVal;
switch ( m_gp.ReadData( m_block, int.MaxValue, out m_readVal, byte.MaxValue ) )
{
case AL_ReadData_Result.ALRes_DatTransferErrr:
case AL_ReadData_Result.ALRes_DisInd:
Assert.Fail( "incorrect return value from ReadData" );
break;
case AL_ReadData_Result.ALRes_Success:
Assert.IsNotNull( m_readVal, "ReadData returned null" );
m_readVal.ReturnEmptyEnvelope();
break;
}
Assert.IsTrue( m_gp.Connected, "State error" );
IWriteValue m_writeVal = m_gp.GetEmptyWriteDataBuffor( m_block, int.MaxValue );
m_writeVal.WriteValue( int.MaxValue, 0 );
switch ( m_gp.WriteData( ref m_writeVal, byte.MaxValue ) )
{
case AL_ReadData_Result.ALRes_DatTransferErrr:
case AL_ReadData_Result.ALRes_DisInd:
Assert.Fail("incorrect return value from ReadData");
break;
case AL_ReadData_Result.ALRes_Success:
Assert.IsNull( m_writeVal, "WriteData has not returned the envelope to a pool" );
break;
}
Assert.IsTrue( m_gp.Connected, "State error" );
m_gp.DisReq();
Assert.IsFalse( m_gp.Connected, "State error" );
m_gp.Dispose();
}
}
}