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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
using GLib;
const string MODEM_IFACE = "usbpn0";
//const string MODEM_IFACE = "phonet0";
static ModemTester mt = null;
static MainLoop loop = null;
//===========================================================================
public static void sighandler( int signum )
{
Posix.signal( signum, null ); // restore original sighandler
loop.quit();
}
//===========================================================================
public static void schedule( int seconds = 3 )
{
var starttime = time_t();
while ( time_t() < starttime + seconds )
{
MainContext.default().iteration( false );
}
}
//===========================================================================
class ModemTester
{
public GIsi.Modem modem;
public GIsi.PhonetLinkState linkstate;
public GIsiClient.MTC mtc;
public GIsiClient.PhoneInfo phoneinfo;
public GIsiClient.SIMAuth simauth;
public GIsiClient.SIM sim;
public GIsiClient.Network network;
public GIsiClient.Call call;
public GIsiComm.MTC gcmtc;
public GIsiComm.PhoneInfo gcphoneinfo;
public GIsiComm.SIMAuth gcsimauth;
public GIsiComm.SIM gcsim;
public GIsiComm.Network gcnetwork;
public GIsiComm.Call gccall;
public ModemTester( string iface )
{
modem = new GIsi.Modem( iface );
linkstate = (GIsi.PhonetLinkState) 999;
}
//
// callbacks
//
public void onNetlinkStateChanged( GIsi.Modem modem, GIsi.PhonetLinkState st, string iface )
{
linkstate = st;
debug( "netlink status for modem %p (%s) now %s", modem, iface, st.to_string() );
}
public void onClientReachabilityVerification( GIsi.Message msg )
{
debug( @"client reachability verification got a response: $msg" );
}
}
//===========================================================================
void test_modem_create()
//===========================================================================
{
var modem = new GIsi.Modem();
modem = new GIsi.Modem( MODEM_IFACE );
modem = new GIsi.Modem.index_new( 0 );
}
//===========================================================================
void test_netlink_bringup()
//===========================================================================
{
mt.modem = new GIsi.Modem( MODEM_IFACE );
assert( mt.modem != null );
unowned GIsi.PhonetNetlink netlink = mt.modem.netlink_start( mt.onNetlinkStateChanged );
assert( netlink != null );
mt.modem.netlink_set_address( GIsi.PhonetDevice.SOS );
while ( mt.linkstate != GIsi.PhonetLinkState.UP && mt.linkstate != GIsi.PhonetLinkState.DOWN )
{
MainContext.default().iteration( false );
}
assert( mt.linkstate == GIsi.PhonetLinkState.UP );
}
//===========================================================================
void test_servers_query_versions()
//===========================================================================
{
mt.gcmtc = new GIsiComm.MTC( mt.modem );
var req = new uint8[] { 0x02, 0x00, 0x00 };
var ok = false;
for ( int i = 0x01; i < 0x0FF; ++i )
{
uchar resource = (uchar) i;
debug( @"Querying resource $i..." );
/*
mt.modem.request_send( resource, req, 5, (msg) => {
debug( @"reply is $msg" );
ok = true;
} );
*/
mt.modem.resource_ping( resource, (msg) => {
debug( @"reply is $msg" );
ok = true;
} );
ok = false;
while ( !ok ) MainContext.default().iteration( false );
}
}
//===========================================================================
void main( string[] args )
//===========================================================================
{
Test.init( ref args );
Test.add_func( "/GISI/Modem/Create", test_modem_create );
Test.add_func( "/GISI/Netlink/Bringup", test_netlink_bringup );
Test.add_func( "/GISI/Servers/QueryVersions", test_servers_query_versions );
mt = new ModemTester( MODEM_IFACE );
loop = new MainLoop();
Idle.add( () => {
Test.run();
return false;
} );
Posix.signal( Posix.SIGINT, sighandler );
Posix.signal( Posix.SIGTERM, sighandler );
debug( "=> mainloop" );
loop.run();
debug( "<= mainloop" );
}
// vim:ts=4:sw=4:expandtab
|