1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/tsrc/T_COMMAND.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,72 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <e32cons.h>
1.20 +#include <e32test.h>
1.21 +
1.22 +LOCAL_D RTest test(_L("t_command"));
1.23 +LOCAL_D RProcess me;
1.24 +
1.25 +/**
1.26 +@SYMTestCaseID SYSLIB-BAFL-CT-0485
1.27 +@SYMTestCaseDesc Tests the behaviour of long command line arguments
1.28 +@SYMTestPriority High
1.29 +@SYMTestActions Tests for long command line arguments by creating another process.
1.30 +@SYMTestExpectedResults Tests must not fail
1.31 +@SYMREQ REQ0000
1.32 +*/
1.33 +void RunChildProcessL()
1.34 + {
1.35 + //passing a very long command line argument with more than 256 characters
1.36 + TBuf<300> longargument(_L("verylongargument verylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargumentverylongargument"));
1.37 + test.Printf(_L("Test for command line argument with %d characters \n"),longargument.Length());
1.38 +
1.39 + //Creating another process to run T_CLINE with very long command line arguments
1.40 + TInt err=me.Create(_L("T_CLINE"),longargument);
1.41 + if (err==KErrNotFound)
1.42 + err=me.Create(_L("z:\\test\\T_CLINE"),longargument);
1.43 + test(err==KErrNone);
1.44 +
1.45 + //Checking that the child proces T_CLINE executes properly with no panic
1.46 + TRequestStatus status;
1.47 + me.Logon(status);
1.48 + me.Resume();
1.49 + User::WaitForRequest(status);
1.50 + test(status==KErrNone);
1.51 +
1.52 + test(me.ExitType()==EExitKill);
1.53 + test(me.ExitReason()==KErrNone);
1.54 + me.Close();
1.55 +
1.56 +
1.57 + }
1.58 +
1.59 +
1.60 +
1.61 +GLDEF_C TInt E32Main()
1.62 + {
1.63 + test.Title();
1.64 + test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-CT-0485 Starting tests... "));
1.65 + __UHEAP_MARK;
1.66 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.67 + TRAPD(error,RunChildProcessL());
1.68 + test(error==KErrNone);
1.69 + test.End();
1.70 + test.Close();
1.71 + delete cleanup;
1.72 + __UHEAP_MARKEND;
1.73 + return 0;
1.74 + }
1.75 +