Add unit test

This commit is contained in:
sunkaixuan 2022-08-04 13:17:11 +08:00
parent bef3cf9a9f
commit 4fc25dcfeb
2 changed files with 21 additions and 13 deletions

View File

@ -13,7 +13,7 @@ namespace SqlSugarDemo
{
[SugarColumn(IsIgnore = true)]
[Navigate(NavigateType.OneToOne, nameof(user_id))]
public user_name_simple CommentUser { set; get; }
public user_name_simple UserInfo { set; get; }
[SugarColumn(IsIgnore = true)]
[Navigate(NavigateType.OneToOne, nameof(reply_user_id))]

View File

@ -26,27 +26,35 @@ namespace OrmTest
}).ExecuteReturnIdentity();
db.Insertable(new poetry_video_comment()
{
first_reply_id = 1,
reply_user_id = userid2,
user_id = userid2
first_reply_id = 0,
reply_user_id = 0,
user_id = 0
}).ExecuteReturnIdentity();
db.Insertable(new poetry_video_comment()
{
first_reply_id = 1,
first_reply_id = 2,
reply_user_id = userid,
user_id = userid2
}).ExecuteReturnIdentity();
db.Insertable(new poetry_video_comment()
{
first_reply_id = 11,
reply_user_id = 11,
user_id = 11
}).ExecuteReturnIdentity();
var x = db.Queryable<poetry_video_comment>().ToList();
//db.Insertable(new poetry_video_comment()
//{
// first_reply_id = 11,
// reply_user_id = 11,
// user_id = 11
//}).ExecuteReturnIdentity();
var list = db.Queryable<poetry_video_comment>()
.Includes(o => o.FirstReply, o => o.ReplyUser)
.Includes(o => o.FirstReply, o => o.CommentUser)
.Includes(o => o.FirstReply, o => o.UserInfo)
.ToList();
if (list.Last().FirstReply.UserInfo == null)
{
throw new Exception("unit error");
}
if (list.Last().FirstReply.ReplyUser == null)
{
throw new Exception("unit error");
}
}
}
}