RobotFramework能用Python和Jython两条腿走路。但有的时候你得选一条。今天就碰上个问题,为了整合其它模块必须用Java实现的DataBaseLibrary
其实实它很简单,记录步骤如下:
1.在RF的主页找到DataBaseLibrary(Java)的主页。
http://code.google.com/p/robotframework-dblibrary/
下载dblibrary-1.0.jar 这个库文件
2.在Oracle的主页的download中找到JDBC的驱动程序下载下来(不同版本驱动不同,我用的10g的驱动class12.jar),或者从你安装的Oracle目录的jdbc子目录中找到驱动备用。
3.将这两个jar文件全部加入环境变量CLASSPATH
4.在RF里编写测试脚本
连接的例子如下:
Database
Setting Value
Library org.robot.database.keywords.DatabaseLibrary
Test Case Action Arguments
Test Connect to DataBase oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@xxx.xxx.xxx.xxx:1521:sid username
... password
具体使用情况可见用户手册:
http://robotframework-dblibrary.googlecode.com/svn/tags/robotframework-dblibrary-1.0/doc/DatabaseLibrary.html
两个Tip:
1.为了便于多人使用,建议使用bat动态在Classpath加入Jar包。而不是直接写到环境变量中(这样慢慢的你的classpath就乱死了)。
给一个参考例子:
set CP=%CLASSPATH%
for %%j in (*.jar) do ( call :set_cp %%j )
set CLASSPATH=%CP%
jybot --outputdir ?% --suitestatlevel 1 %*
goto :eof
:set_cp
set CP=%CP%?%%1;
goto :eof
2.这个classLibrary是开源的,写的很粗糙,觉得不爽可以自己改一改,它的代码host在google code上
可用SVN checkout
http://code.google.com/p/robotframework-dblibrary/source/checkout