In the org.safs.model, the class Component stores:

  • information of this component's name
  • reference of its parent, also a component
private String _name;
private Component _parent;

It provides interface to return its name, its parent's name and its parent's comopnent reference:

public String getName();

public Component getParent();   

public String getParentName();

In package org.safs.model, the Utils class provides various functions used by other classes. For example:

/**
* Wrap the provided val String in double-quotes.
* @param val String to wrap in double-quotes
* @return val wrapped in quotes or a double-quoted empty string if
* val was null.
*/
static public String quote(String val) {
if (val == null) return "\"\"";
return "\"" + val + "\"";
} public static String concat(String string1, String string2) {
return string1 + "&" + string2;
}

Retrieve SAFSVARS

Let's first talk about the process of retrieving SAFS variables stored in SAFSVARS. This process will show many mechanisms routining in SAFS. We need to open up the packages of SAFS to know some basic classes structure.

In package org.safs.model.tools, class EmbeddedHookDriverRunner is an access point to a minimalist EmbeddedHookDriver Driver API. EmbeddedHookDriver allows custom JSAFS test development and execution inside a Java-based SAFS Engine.

As the constructor is:

/**
* Create the Runner that instantiates the particular EmbeddedHookDriver subclass
* pass in to the Constructor.
*/
public EmbeddedHookDriverRunner(Class clazz){
super();
if(driver == null){
try{
driver = new EmbeddedHookDriverDriver(clazz);
}catch(Exception x){
x.printStackTrace();
throw new Error("Cannot instantiate required Drivers!");
}
}
}

It'll create specific subclass of EmbeddedHookDriver for doing the work. Also from the code, we can know that EmbeddedHookDriverDriver is just a wrapper of EmbeddedHookDriver for providing minimalist interface.

Java-based SAFS Engines would need to implement an engine-specific subclass of this EmbededHookDriver using a EmbeddedHookSTAFHelper to take advantage of this feature. For example:

EmbeddedHookDriverSubclass hook = new EmbeddedHookDriverSubclass("UniqueName");

Generic JavaHook for tool-independent SAFS Engines. This abstract class provides the implementation for the initialization and event handling of all Java-based SAFS Engines that will be controlled via our SAFS protocols.

// Set the process name for this hook for an instance of created from an empty constructor.
protected void setProcessName(String process_name); // Insert this SAFS Engine hook into the STAF system.
void start();

JSAFSDriver Structure and Utility:

  • AbstractDriver: the root, abstract implementation of tool-independent driver.
  • DefaultDriver: root, yet abstract, implementation of tool-independent driver, final concrete implementation must implement AbstractDriver#processTest().
  • JSAFSDriver: provides easy access to SAFS functionality for non-SAFS programs and frameworks.

Combine the two parts, we get:

In order to retrieve the value of a SAFS variable stored in SAFSVARS, SAFS uses a embeddedHookDriverRunner to finish the work.

return Runner.jsafs().getVariable(variableName);

The steps are:

  1. return a EmbeddedHookDriver by using EmbeddedHookDriverDriver called by EmbeddedHookDriverRunner.
  2. use this embeddedHookDriver to return a JSAFSDriver.
  3. use the JSAFSDriver to retrieve the value of a SAFS variable stored in SAFSVARS.

Then, let's focus on the retrieving method of JSAFSDriver.

The method getVariable()

public String getVariable(String varname){
return getVarsInterface().getValue(varname);
}

is from the superclass AbstractDriver. It'll return the VarsInterface:

In the interface SimpleVarsInterface, it will return the current value of variable var.

That's the whole process of retrieving the variables stored in SAFSVARS.

The obvious next question is: when are the values of variables stored in SAFSVARS loaded into program?

Well, in fact this will be another long story we will expand below.

In order to know when SAFS load the configuration information, we'll focus on the following class structure:

In the AbstractDriver class, it offers lots of variables to store the driver interface information:

// Driver Interface Information
protected InputInterface input = null;
protected MapsInterface maps = null;
protected VarsInterface vars = null;
protected LogsInterface logs = null;
protected CoreInterface core = null;
protected CountersInterface counts = null;
protected DebugInterface debug = new DebugInfo();

Here, we may focus just one variable maps (which) as our example for explanation.

The JSAFSDriver offers a method run() for initializing the embedded dirvers and engines to start running if it is not already running. It ensures the drivers are initialized before trying to use them. Following this run() method, a series of calling will happen:

  1. driver.run()
  2. preloadAppMapExpressions()
  3. preloadAppMap()

The  first part, driver.run(), will initialize configuration with default paramters. The process is below:

Thus, the validateRootConfigureParameters() method will configurate paramters with defalut paramters.

  • In DefaultDriver class, method validateRootConfigureParameters() gets the configuration information.

  • In org.safs.tools.drivers.ConfigureFile.java, class ConfigureFile implements ConfigureInterface, and its method getNamedValue() will retrieve the values in the configuration sources.

  • In org.safs.tools.drivers.ConfigureInterface.java, the method getNamedValue() of interface ConfigureInterface is used to retrieve an item that may be in the configuration sources. An item is identified by a parent key or section name, like in an INI file "section", and the name of the item in that section.

After loading of configuration information, in the DefaultDriver class, the function initializeRuntimeInterface() will initialize these interface variables:

protected void initializeRuntimeInterface(){
// ...
try {
// first one in, if initializing STAF, must be last one to shutdown.
maps = (MapsInterface) getGenericInterface(DriverConstant.SECTION_SAFS_MAPS,
DriverConstant.DEFAULT_MAPS_INTERFACE);
// ...
}
// ...
}

Inside the getGenericInterface() method, it'll use the configuration information, stored in variable configInfo, to initialize the corresponding interface information, i.e. maps here:

protected GenericToolsInterface getGenericInterface (String configSection, String defaultInterface)
throws ClassNotFoundException, IllegalAccessException, InstantiationException {
String iName = configInfo.getNamedValue(configSection, "Item");
if (iName == null)
iName = defaultInterface;
iName = StringUtilities.TWhitespace(iName);
iName = StringUtilities.removeDoubleQuotes(iName);
return ((GenericToolsInterface) (Class.forName(iName).newInstance()));
}

The third part, preloadAppMap(), will locate the directory of MAP file, and using file read function to assign corresponding interface variables:

That's the brief explanation of loading MAP files.


Open a Browser

In the SeleniumPlus class, the command() method executes a driver command by a EmbeddedDriverRunner, Runner:

public static EmbeddedHookDriverRunner Runner = new EmbeddedHookDriverRunner(EmbeddedSeleniumHookDriver.class);
// ...
prevResults = Runner.command(command, params);

Process of calling functions:

In order to startup a service, it needs to use the interface of a driver's wrapper, i.e. the Runner. Then, by using the method of wrapper, it uses JSAFSDriver to call corresponding method. It's obvious that all the other service calling will get through this process. Summary above, we get:

  1. Use an access point of a driver's wrapper, Runner.
  2. Use the wrapper, driver of EmbeddedHookDriver which is the field of Runner, driver.
  3. Use this driver to get a Java SAFS Driver, jsafs.
  4. Use jsafs to call process command methods.

Following above steps, by using jsafs to startup command methods, it needs to call abstract driver method. After the initial parameters processing, it will use a Process variable, proc, to call the concrete driver methods.

The RemoteDriver class handle a SeleniumRMIAgent, if enabled, to communicate with a remote SAFS Selenium RMI Server.


Log In

The log in process involves the click action, which is a little different than the process of command.

Process of calling structure:

In ComponentFunction class, the componentProcess() method includes the process generic actions on a component.


Set Text Value

The process of "set text value":

How to generate Map.class file:

SAFS Distilled --- 9 April 2015 to 16 April 2015的更多相关文章

  1. [转]Adobe Creative Cloud 2015 下载 Adobe CC 2015 Download

    Adobe Creative Cloud 2015 下载   Adobe 宣布 Creative Cloud 设计套件全线更新! Adobe CC 2015新功能包括: – Premiere Pro ...

  2. myeclipse 2015 CI 16发布【附下载】

    2015升级版再次来袭! 更新日志: Slack Integration 新版本集成了Slack,你只需要注册一个Slack帐号然后就可以发送和接收代码片段.你甚至不需要登录Slack就可以直接在Ec ...

  3. H264解码学习-2015.04.16

    今天看了不少,却感觉收获寥寥. 1.H264相关知识 因为RTP协议发过来的数据已经经过了H264编码,所以这边需要解码.补充一下H264的相关知识. 与以往的视频压缩标准相比,H.264 视频压缩标 ...

  4. Zookepper(2015.08.16笔记)

    2015.08.16zookepper   Zookeeper 是 Google 的 Chubby一个开源的实现,是 Hadoop 的分布式协调服务(如同小区里面的供水.电的系统) 它包含一个简单的原 ...

  5. 2015.2.16 关于delphi web控件打开新网页时弹出关闭页面(js代码)出错的解决办法研究

    参考网址1:http://www.csharpwin.com/csharpspace/2360.shtml...参考网址2:http://www.oschina.net/question/234345 ...

  6. SQL SERVER 并发【2015.12.16】

    并发控制模型   1.悲观并发控制: A.默认冲突存在,当前进程通过获取当前数据的锁阻止其他进程的访问. B.读与写之间是相互阻塞. 2.乐观并发控制: A.使用行版本控制保持数据被操作前的状态. B ...

  7. http://oncenote.com/2015/09/16/Security-2-HTTPS2/ (轉載)

    上一篇<iOS安全系列之一:HTTPS>被CocoaChina转载,还顺便上了下头条: 打造安全的App!iOS安全系列之 HTTPS,但那篇文章只是介绍了比较偏应用的初级知识,对于想要深 ...

  8. 2015第16周六学习java建议

    学习Java 建议: 尽量用 google 查找技术资料. 有问题在 stackoverflow 找找,大部分都已经有人回答. 多看官方的技术文档. ibm developerworkers 的文章质 ...

  9. android 边学边记 2015.10.16

    1.Menu.FIRST在reference中描述为:First value for group and item identifier integers.我们可以理解为ID设置的最小数值. 2.se ...

随机推荐

  1. hdu 5934 Bomb

    Bomb Problem Description There are N bombs needing exploding.Each bomb has three attributes: explodi ...

  2. Eclipse 3.5使用dropins的插件安装方式

    以前安装Eclipse插件有两种方式 1 直接copy插件到features/plugins目录 2 在links目录下创建链接文件. 而 Eclipse 3.5又推出另一种新的安装途径, 更加灵活. ...

  3. Hyper-V 共享式网络链接 端口映射

    远程路由访问我配置了很久都不成功,经过多方搜索,现面的命令能实现端口映射一.查询端口映射情况netsh interface portproxy show v4tov4查询这个IP所有的端口映射.net ...

  4. poj 1080 (LCS变形)

    Human Gene Functions 题意: LCS: 设dp[i][j]为前i,j的最长公共序列长度: dp[i][j] = dp[i-1][j-1]+1;(a[i] == b[j]) dp[i ...

  5. noip2014-day1-t2

    题目描述:无向连通图G 有n 个点,n - 1 条边.点从1 到n 依次编号,编号为 i 的点的权值为W i ,每条边的长度均为1 .图上两点( u , v ) 的距离定义为u 点到v 点的最短距离. ...

  6. javaBean与Map<String,Object>互转

    背景:有时候想不通阿帕奇的BeanUtils是怎么进行map和Bean互相转化的. 工作闲暇之余,自己写个一小段代码,一探究竟,试试才发现,原来一切并非我们想的那么什么和复杂. 注:这里只是简单实例, ...

  7. android --- Afianl框架里面的FinalBitmap加载网络图片

    Afinal里面FinalBitmap:用于显示bitmap图片,而无需考虑线程并发和oom等问题. 1.测试请求 使用网页打开http://avatar.csdn.net/C/6/8/1_bz419 ...

  8. Unity3D研究院之使用Animation编辑器编辑动画(五十四)

     Unity提供了Animation编辑器,它可以为我们编辑物理动画.举个例子比如场景中有一个来回摇动的秋千,这个秋千在项目中完全只起到衬托作用,它不会与别的游戏对象有任何交互.如果这个秋千也用代码来 ...

  9. log_reuse_wait_desc为REPLICATION,日志暴大,无法收缩

    早上检查数据发现,有一台数据的硬盘空间只剩下几MB.习惯性检查日志文件,发现日志文件居然暴增到了350多GB 首先备份日志,再收缩-------无变化.(实际上日志备份每1小时1挡,正常在跑.) -- ...

  10. redis和ssdb读取性能对比

    最近关注了一下ssdb,它的特点是基于文件存储系统所以它支撑量大的数据而不因为内存的限制受取约束.从官网的测试报告来看其性能也非常出色和redis相当,因此可以使用它来代替redis来进行k-v数据业 ...