Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ProActive
scheduling
Commits
24c7ba71
Commit
24c7ba71
authored
Aug 23, 2013
by
Youri Bonnaffé
Committed by
Sergei Dolgov
Aug 23, 2013
Browse files
SCHEDULING-1902 - add unit test
Change-Id: I7ccacfde2c61742eaa50942c39a7e8bf7efba607
parent
6277c00c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/scheduler/tests/unitTests/TestDataSpaceServiceStarter.java
0 → 100644
View file @
24c7ba71
/*
* *
* ProActive Parallel Suite(TM): The Java(TM) library for
* Parallel, Distributed, Multi-Core Computing for
* Enterprise Grids & Clouds
*
* Copyright (C) 1997-2013 INRIA/University of
* Nice-Sophia Antipolis/ActiveEon
* Contact: proactive@ow2.org or contact@activeeon.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Affero General Public License
* as published by the Free Software Foundation; version 3 of
* the License.
*
* This library 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
* Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*
* If needed, contact us to obtain a release under GPL Version 2 or 3
* or a different license than the AGPL.
*
* Initial developer(s): The ProActive Team
* http://proactive.inria.fr/team_members.htm
* Contributor(s):
*
* * $$PROACTIVE_INITIAL_DEV$$
*/
package
unitTests
;
import
java.rmi.RemoteException
;
import
org.objectweb.proactive.api.PAActiveObject
;
import
org.ow2.proactive.scheduler.core.DataSpaceServiceStarter
;
import
org.junit.Test
;
import
static
org
.
junit
.
Assert
.
assertEquals
;
import
static
org
.
junit
.
Assert
.
assertTrue
;
import
static
org
.
junit
.
Assert
.
fail
;
public
class
TestDataSpaceServiceStarter
{
@Test
// For SCHEDULING-1902, minimal test
public
void
testTerminateNamingService
()
throws
Exception
{
TestDataSpaceServiceStarter
activeObject
=
PAActiveObject
.
turnActive
(
new
TestDataSpaceServiceStarter
());
activeObject
.
doTestTerminateNamingService
();
}
public
void
doTestTerminateNamingService
()
throws
Exception
{
DataSpaceServiceStarter
dataSpaceServiceStarter
=
new
DataSpaceServiceStarter
();
dataSpaceServiceStarter
.
startNamingService
();
assertEquals
(
1
,
dataSpaceServiceStarter
.
getNamingService
().
getRegisteredApplications
().
size
());
dataSpaceServiceStarter
.
terminateNamingService
();
try
{
dataSpaceServiceStarter
.
getNamingService
().
getRegisteredApplications
();
fail
(
"Naming service should not be accessible anymore"
);
}
catch
(
Exception
expected
)
{
assertTrue
(
expected
instanceof
RemoteException
);
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment