Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
X
xm-autotest-live
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
xiamai-test
xm-autotest-live
Commits
07979dd7
Commit
07979dd7
authored
Feb 05, 2021
by
zhangying
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加资料云盘的case
parent
8d7b1ca7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
129 additions
and
0 deletions
+129
-0
src/main/java/com/live/cases/fileManage/commonFolder/TestSaveFolder.java
+59
-0
src/main/java/com/live/cases/fileManage/myselfFolder/TestRenameFolder.java
+63
-0
src/main/resources/apicase/api-file-b.json
+7
-0
No files found.
src/main/java/com/live/cases/fileManage/commonFolder/TestSaveFolder.java
0 → 100644
View file @
07979dd7
package
com
.
live
.
cases
.
fileManage
.
commonFolder
;
import
com.alibaba.fastjson.JSONObject
;
import
com.live.enums.ApiModele
;
import
com.live.enums.RequestType
;
import
com.live.enums.Terminal
;
import
com.live.utils.RandomStringUtil
;
import
com.live.utils.XMBaseTest
;
import
com.live.xmutils.GetFolderData
;
import
org.testng.Assert
;
import
org.testng.annotations.BeforeMethod
;
import
org.testng.annotations.Test
;
import
java.util.HashMap
;
import
java.util.Map
;
import
static
io
.
restassured
.
RestAssured
.
given
;
import
static
org
.
hamcrest
.
Matchers
.
equalTo
;
/**
* Created by zhangying on 2020/11/16
*/
public
class
TestSaveFolder
extends
XMBaseTest
{
@BeforeMethod
public
void
beforeTest
()
{
xmAppApi
.
setApiModule
(
ApiModele
.
CloudClass_File
)
// API 所属模块 必传 读取配置文件config.properties配置的api地址
.
setApiName
(
"API_saveFolder"
)
// API 名称 必传
.
setLoginUser
(
"zhangy-b"
)
// http 接口,测试账号 必传
.
setTerminal
(
Terminal
.
B
);
// 所属端位(B端,C端,M端等, 必传)
super
.
beforeTest
();
}
/**
* 测试资料云盘-新增保存文件夹
*/
@Test
public
void
testSaveFolder
()
{
String
name
=
"测试文件夹新增"
+
RandomStringUtil
.
randomString
(
6
);
//云盘文件名称
JSONObject
jsonObject
=
new
JSONObject
();
jsonObject
.
put
(
"createUser"
,
"ADMIN"
);
jsonObject
.
put
(
"disk"
,
"COMMON"
);
jsonObject
.
put
(
"folderTypeEnum"
,
"FOLDER"
);
jsonObject
.
put
(
"instId"
,
"1235115978015883266"
);
jsonObject
.
put
(
"name"
,
name
);
jsonObject
.
put
(
"parentId"
,
null
);
xmAppApi
.
doRequest
(
RequestType
.
JSON
,
params
,
jsonObject
.
toJSONString
(),
headers
);
JSONObject
jsonBody
=
xmAppApi
.
getBodyInJSON
();
System
.
out
.
println
(
"jsonBody = "
+
jsonBody
);
Assert
.
assertEquals
(
"true"
,
jsonBody
.
getString
(
"success"
));
// Assert.assertNotEquals(folderName1,folderName);
}
}
src/main/java/com/live/cases/fileManage/myselfFolder/TestRenameFolder.java
0 → 100644
View file @
07979dd7
package
com
.
live
.
cases
.
fileManage
.
myselfFolder
;
import
com.alibaba.fastjson.JSONObject
;
import
com.live.enums.ApiModele
;
import
com.live.enums.RequestType
;
import
com.live.enums.Terminal
;
import
com.live.utils.RandomStringUtil
;
import
com.live.utils.XMBaseTest
;
import
com.live.xmutils.GetFolderData
;
import
org.testng.Assert
;
import
org.testng.annotations.BeforeMethod
;
import
org.testng.annotations.Test
;
import
java.util.ArrayList
;
import
java.util.List
;
/**
* Created by zhangying on 2021/2/05
*/
public
class
TestRenameFolder
extends
XMBaseTest
{
@BeforeMethod
public
void
beforeTest
()
{
xmAppApi
.
setApiModule
(
ApiModele
.
CloudClass_File
)
// API 所属模块 必传 读取配置文件config.properties配置的api地址
.
setApiName
(
"API_renameFolder"
)
// API 名称 必传
.
setLoginUser
(
"zhangy-b"
)
// http 接口,测试账号 必传
.
setTerminal
(
Terminal
.
B
);
// 所属端位(B端,C端,M端等, 必传)
super
.
beforeTest
();
System
.
out
.
println
(
xmAppApi
);
}
/**
* 测试移动文件夹-重命名文件夹
*/
@Test
public
void
testRenameFolder
()
{
GetFolderData
getFolderData
=
new
GetFolderData
();
JSONObject
folderList
=
getFolderData
.
getFolderList
();
String
folderId
=
folderList
.
getJSONObject
(
"result"
).
getJSONArray
(
"records"
).
getJSONObject
(
0
).
getString
(
"id"
);
String
folderName
=
folderList
.
getJSONObject
(
"result"
).
getJSONArray
(
"records"
).
getJSONObject
(
0
).
getString
(
"folderName"
);
System
.
out
.
println
(
"folderList = "
+
folderList
);
String
name
=
"测试文件夹新增"
+
RandomStringUtil
.
randomString
(
6
);
//云盘文件名称
JSONObject
jsonObject
=
new
JSONObject
();
jsonObject
.
put
(
"name"
,
name
);
jsonObject
.
put
(
"id"
,
folderId
);
xmAppApi
.
doRequest
(
RequestType
.
JSON
,
params
,
jsonObject
.
toJSONString
(),
headers
);
JSONObject
jsonBody
=
xmAppApi
.
getBodyInJSON
();
System
.
out
.
println
(
"jsonBody = "
+
jsonBody
);
JSONObject
folderList1
=
getFolderData
.
getFolderList
();
String
folderName1
=
folderList1
.
getJSONObject
(
"result"
).
getJSONArray
(
"records"
).
getJSONObject
(
0
).
getString
(
"folderName"
);
System
.
out
.
println
(
"folderName1 = "
+
folderName1
);
Assert
.
assertEquals
(
"true"
,
jsonBody
.
getString
(
"success"
));
Assert
.
assertNotEquals
(
folderName1
,
folderName
);
}
}
src/main/resources/apicase/api-file-b.json
View file @
07979dd7
...
@@ -82,5 +82,12 @@
...
@@ -82,5 +82,12 @@
"apiContentType"
:
"application/json;charset=UTF-8"
,
"apiContentType"
:
"application/json;charset=UTF-8"
,
"apiName"
:
"删除公共文件"
,
"apiName"
:
"删除公共文件"
,
"desc"
:
"删除公共文件"
"desc"
:
"删除公共文件"
},
"API_renameFolder"
:
{
"apiPath"
:
"/apollo/public/apollo/renameFolder"
,
"apiContentType"
:
"application/json;charset=UTF-8"
,
"apiName"
:
"重命名文件夹"
,
"desc"
:
"重命名文件夹"
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment