分享
 
 
 

写了个单元测试辅助类,用于读取文本加入数据,删除数据和检查数据的

王朝other·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

下面是数据文本文件的格式

“#”号是注释

“T:”是加入

“D:”是删除表里面的数据

“C:”是检查数据

数据与数据之间用TAB隔开(可以从企业管理器直接把数据拷贝出来作为数据源)

加入数据的事列如下:

#插入用户表

# null为插入空

T:Users

John <TAB>John chan

Cake<TAB>Cake.lu

jeff<TAB>jeff.hu

# CheckTable's Data

#null为检查是否为空,skip掉过不检查,notnull检查他是否不为空

C:Users

John <TAB>John chan

Cake<TAB>Cake.lu

jeff<TAB>jeff.hu

#Delete All Data

D:TAbleName

调用代码:

参数1:文本文件的路径

参数2:是Helper里面的两个常量(其实可以是个Enum,不过写的时候没有注意)

Helper.ExecuteAction("Data.txt",Helper.INSERT);

参数3:是指定对那个对象操作(T:D:C:后面的名称,如T:Users,那么就填Users)

Helper.ExecuteACtion("Data.txt",Helper.Insert,"Users")

代码如下:

using System;

using System.Data;

using System.IO;

using System.Data.SqlClient;

using Microsoft.ApplicationBlocks.Data;

using NUnit.Framework;

namespace TestCore

{

public class Helper

{

public const string DELETE="D";

public const string INSERT="T";

public const string CHECK="C";

public const string ANNOTATE="#";

public static string ConnectionString

{

//这里要写返回的连接字符串

get{return null;}

}

public static void ExecuteAction(string path,string action)

{

ExecuteAction(path,action,null);

}

public static void ExecuteAction(string path,string action,string inputTable)

{

Console.WriteLine("----------------"+action+" action is Start--------------------");

StreamReader reader=new StreamReader(path);

string line;

string table=null;

try

{

while(true)

{

line =reader.ReadLine();

if(line==null)

break;

if(line.Length==0)

continue;

string Key=line.Substring(0,1);

if(Key==action)

{

table=line.Substring(2);

if(action==DELETE)

{

if(CheckTable(inputTable,table))

{

Delete(table);

}

table=null;

}

else

{

continue;

}

}

else if(table!=null)

{

switch(action)

{

case INSERT:

if(CheckTable(inputTable,table))

{

string[] datas=line.Split('\t');

AddData(datas,table);

}

break;

case CHECK:

if(CheckTable(inputTable,table))

{

string[] checkDatas=line.Split('\t');

Check(checkDatas,table);

}

break;

}

table =null;

}

else

{

continue;

}

}

}

finally

{

Console.WriteLine("----------------"+action+" action is End--------------------");

reader.Close();

}

}

private static bool CheckTable(string inputTable,string SettingTable)

{

if(inputTable==null)

return true;

return (inputTable==SettingTable);

}

private static void Delete(string table)

{

string sql=" delete from "+table;

Console.WriteLine(sql);

try

{

SqlHelper.ExecuteNonQuery(ConnectionString,CommandType.Text,sql);

}

catch(Exception e)

{

throw new ApplicationException("删除错误:Sql是"+sql,e);

}

}

private static void AddData(string[] data,string table)

{

SqlConnection conn=new SqlConnection(ConnectionString);

string sql="insert into "+table+" values ";

string temp="('"+data[0]+"'";

for(int i=1;i<data.Length;i++)

{

if(data[i]!="null")

temp+=",'"+data[i]+"'";

else

temp+=",null";

}

sql+=temp+")";

conn.Open();

try

{

Console.WriteLine(sql);

SqlCommand comm =new SqlCommand(sql,conn);

comm.ExecuteNonQuery();

}

catch(Exception e)

{

throw new ApplicationException(table+":"+sql,e);

}

finally

{

conn.Close();

}

}

private static void Check(string[] data,string table)

{

string sql="select * from "+table;

Console.WriteLine(sql);

DataSet ds = SqlHelper.ExecuteDataset(Helper.ConnectionString,CommandType.Text,sql);

DataTable dt=ds.Tables[0];

if(dt.Rows.Count==0)

throw new ArgumentOutOfRangeException( sql+" 返回结构为空");

foreach(DataRow dr in dt.Rows)

{

for(int i=0;i<data.Length;i++)

{

if(data[i].ToLower()=="skip")

continue;

if(data[i].ToLower()=="null")

{

Assert.IsTrue(dr[i].Equals(DBNull.Value),"expect is null ,but it's not null actualy");

continue;

}

if(data[i].ToLower()=="notnull")

{

Assert.IsFalse(dr[i].Equals(DBNull.Value),"expect isn't null but it's null actualy");

continue;

}

if(data[i].Length>=4 && data[i].Substring(0,4).ToLower()=="not:")

{

string txtValue=data[i].Substring(4).ToLower().Trim();

string dbValue=dr[i].ToString().ToLower().Trim();

Assert.IsTrue(txtValue!=dbValue,"db value is the same as data in text file,text file value is "+txtValue);

continue;

}

if(dr[i].ToString().Length!=0 || dr[i].Equals(DBNull.Value))

{

Assert.IsTrue(dr[i].ToString()==data[i],table+":Check Value Is "+data[i]+",but DB is "+dr[i]);

continue;

}

}

}

}

}

}

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有