01: /******************************************************************************
02: * Copyright (C) Lars Ivar Almli. All rights reserved. *
03: * ---------------------------------------------------------------------------*
04: * This file is part of MActor. *
05: * *
06: * MActor is free software; you can redistribute it and/or modify *
07: * it under the terms of the GNU General Public License as published by *
08: * the Free Software Foundation; either version 2 of the License, or *
09: * (at your option) any later version. *
10: * *
11: * MActor is distributed in the hope that it will be useful, *
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14: * GNU General Public License for more details. *
15: * *
16: * You should have received a copy of the GNU General Public License *
17: * along with MActor; if not, write to the Free Software *
18: * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *
19: ******************************************************************************/package org.mactor.tests;
20:
21: import java.util.Random;
22: import org.junit.Assert;
23: import org.mactor.framework.TestContextImpl;
24: import org.mactor.framework.commandexecutors.sql.SqlActionCommandExecutor;
25: import org.mactor.framework.commandexecutors.sql.SqlValueCommandExecutor;
26: import org.mactor.framework.spec.GlobalConfig;
27:
28: public class SqlActionExecutorTest {
29: public void execute() throws Exception {
30: GlobalConfig config = GlobalConfig
31: .readFromFile("config/mactor_sample_test_config/global-config.xml");
32: String val = new Random().nextInt() + "";
33: SqlActionCommandExecutor ae = new SqlActionCommandExecutor(
34: "TEST_DB:update event set error_message='" + val
35: + "' where id=7504", null);
36: TestContextImpl tc = new TestContextImpl(config, null);
37: ae.perform(tc);
38: SqlValueCommandExecutor valE = new SqlValueCommandExecutor(
39: "TEST_DB:select error_message from event where id=7504");
40: String res = valE.extractValue(tc);
41: Assert.assertEquals(val, res);
42: }
43: }
|