|
@@ -23,8 +23,11 @@ func TestFoldersApiEndpoint(t *testing.T) {
|
|
|
fakeDash.FolderId = 1
|
|
fakeDash.FolderId = 1
|
|
|
fakeDash.HasAcl = false
|
|
fakeDash.HasAcl = false
|
|
|
|
|
|
|
|
|
|
+ var getDashboardQueries []*m.GetDashboardQuery
|
|
|
|
|
+
|
|
|
bus.AddHandler("test", func(query *m.GetDashboardQuery) error {
|
|
bus.AddHandler("test", func(query *m.GetDashboardQuery) error {
|
|
|
query.Result = fakeDash
|
|
query.Result = fakeDash
|
|
|
|
|
+ getDashboardQueries = append(getDashboardQueries, query)
|
|
|
return nil
|
|
return nil
|
|
|
})
|
|
})
|
|
|
|
|
|
|
@@ -33,19 +36,40 @@ func TestFoldersApiEndpoint(t *testing.T) {
|
|
|
Convey("When user is an Org Editor", func() {
|
|
Convey("When user is an Org Editor", func() {
|
|
|
role := m.ROLE_EDITOR
|
|
role := m.ROLE_EDITOR
|
|
|
|
|
|
|
|
|
|
+ loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/uid", "/api/folders/:uid", role, func(sc *scenarioContext) {
|
|
|
|
|
+ callGetFolder(sc)
|
|
|
|
|
+ So(sc.resp.Code, ShouldEqual, 404)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
|
callGetFolder(sc)
|
|
callGetFolder(sc)
|
|
|
So(sc.resp.Code, ShouldEqual, 404)
|
|
So(sc.resp.Code, ShouldEqual, 404)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by id", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Id, ShouldEqual, 1)
|
|
|
|
|
+ })
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
- updateFolderScenario("When calling PUT on", "/api/folders/1", "/api/folders/:id", role, updateFolderCmd, func(sc *scenarioContext) {
|
|
|
|
|
|
|
+ updateFolderScenario("When calling PUT on", "/api/folders/uid", "/api/folders/:uid", role, updateFolderCmd, func(sc *scenarioContext) {
|
|
|
callUpdateFolder(sc)
|
|
callUpdateFolder(sc)
|
|
|
So(sc.resp.Code, ShouldEqual, 404)
|
|
So(sc.resp.Code, ShouldEqual, 404)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
- loggedInUserScenarioWithRole("When calling DELETE on", "DELETE", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
|
|
|
|
|
+ loggedInUserScenarioWithRole("When calling DELETE on", "DELETE", "/api/folders/uid", "/api/folders/:uid", role, func(sc *scenarioContext) {
|
|
|
callDeleteFolder(sc)
|
|
callDeleteFolder(sc)
|
|
|
So(sc.resp.Code, ShouldEqual, 404)
|
|
So(sc.resp.Code, ShouldEqual, 404)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
})
|
|
})
|
|
|
})
|
|
})
|
|
|
})
|
|
})
|
|
@@ -55,8 +79,11 @@ func TestFoldersApiEndpoint(t *testing.T) {
|
|
|
fakeFolder.Id = 1
|
|
fakeFolder.Id = 1
|
|
|
fakeFolder.HasAcl = false
|
|
fakeFolder.HasAcl = false
|
|
|
|
|
|
|
|
|
|
+ var getDashboardQueries []*m.GetDashboardQuery
|
|
|
|
|
+
|
|
|
bus.AddHandler("test", func(query *m.GetDashboardQuery) error {
|
|
bus.AddHandler("test", func(query *m.GetDashboardQuery) error {
|
|
|
query.Result = fakeFolder
|
|
query.Result = fakeFolder
|
|
|
|
|
+ getDashboardQueries = append(getDashboardQueries, query)
|
|
|
return nil
|
|
return nil
|
|
|
})
|
|
})
|
|
|
|
|
|
|
@@ -82,12 +109,34 @@ func TestFoldersApiEndpoint(t *testing.T) {
|
|
|
Title: fakeFolder.Title,
|
|
Title: fakeFolder.Title,
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ updateFolderCmd := m.UpdateFolderCommand{
|
|
|
|
|
+ Title: fakeFolder.Title,
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
Convey("When user is an Org Viewer", func() {
|
|
Convey("When user is an Org Viewer", func() {
|
|
|
role := m.ROLE_VIEWER
|
|
role := m.ROLE_VIEWER
|
|
|
|
|
|
|
|
|
|
+ loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/uid", "/api/folders/:uid", role, func(sc *scenarioContext) {
|
|
|
|
|
+ folder := getFolderShouldReturn200(sc)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should not be able to edit or save folder", func() {
|
|
|
|
|
+ So(folder.CanEdit, ShouldBeFalse)
|
|
|
|
|
+ So(folder.CanSave, ShouldBeFalse)
|
|
|
|
|
+ So(folder.CanAdmin, ShouldBeFalse)
|
|
|
|
|
+ })
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
|
folder := getFolderShouldReturn200(sc)
|
|
folder := getFolderShouldReturn200(sc)
|
|
|
|
|
|
|
|
|
|
+ Convey("Should lookup folder by id", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Id, ShouldEqual, 1)
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
Convey("Should not be able to edit or save folder", func() {
|
|
Convey("Should not be able to edit or save folder", func() {
|
|
|
So(folder.CanEdit, ShouldBeFalse)
|
|
So(folder.CanEdit, ShouldBeFalse)
|
|
|
So(folder.CanSave, ShouldBeFalse)
|
|
So(folder.CanSave, ShouldBeFalse)
|
|
@@ -95,23 +144,54 @@ func TestFoldersApiEndpoint(t *testing.T) {
|
|
|
})
|
|
})
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
- loggedInUserScenarioWithRole("When calling DELETE on", "DELETE", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
|
|
|
|
|
+ loggedInUserScenarioWithRole("When calling DELETE on", "DELETE", "/api/folders/uid", "/api/folders/:uid", role, func(sc *scenarioContext) {
|
|
|
callDeleteFolder(sc)
|
|
callDeleteFolder(sc)
|
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
createFolderScenario("When calling POST on", "/api/folders", "/api/folders", role, cmd, func(sc *scenarioContext) {
|
|
createFolderScenario("When calling POST on", "/api/folders", "/api/folders", role, cmd, func(sc *scenarioContext) {
|
|
|
callCreateFolder(sc)
|
|
callCreateFolder(sc)
|
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
|
})
|
|
})
|
|
|
|
|
+
|
|
|
|
|
+ updateFolderScenario("When calling PUT on", "/api/folders/uid", "/api/folders/:uid", role, updateFolderCmd, func(sc *scenarioContext) {
|
|
|
|
|
+ callUpdateFolder(sc)
|
|
|
|
|
+ So(sc.resp.Code, ShouldEqual, 403)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
|
|
+ })
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
Convey("When user is an Org Editor", func() {
|
|
Convey("When user is an Org Editor", func() {
|
|
|
role := m.ROLE_EDITOR
|
|
role := m.ROLE_EDITOR
|
|
|
|
|
|
|
|
|
|
+ loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/uid", "/api/folders/:uid", role, func(sc *scenarioContext) {
|
|
|
|
|
+ folder := getFolderShouldReturn200(sc)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should be able to edit or save folder", func() {
|
|
|
|
|
+ So(folder.CanEdit, ShouldBeTrue)
|
|
|
|
|
+ So(folder.CanSave, ShouldBeTrue)
|
|
|
|
|
+ So(folder.CanAdmin, ShouldBeFalse)
|
|
|
|
|
+ })
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
|
folder := getFolderShouldReturn200(sc)
|
|
folder := getFolderShouldReturn200(sc)
|
|
|
|
|
|
|
|
|
|
+ Convey("Should lookup folder by id", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Id, ShouldEqual, 1)
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
Convey("Should be able to edit or save folder", func() {
|
|
Convey("Should be able to edit or save folder", func() {
|
|
|
So(folder.CanEdit, ShouldBeTrue)
|
|
So(folder.CanEdit, ShouldBeTrue)
|
|
|
So(folder.CanSave, ShouldBeTrue)
|
|
So(folder.CanSave, ShouldBeTrue)
|
|
@@ -119,15 +199,28 @@ func TestFoldersApiEndpoint(t *testing.T) {
|
|
|
})
|
|
})
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
- loggedInUserScenarioWithRole("When calling DELETE on", "DELETE", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
|
|
|
|
|
+ loggedInUserScenarioWithRole("When calling DELETE on", "DELETE", "/api/folders/uid", "/api/folders/:uid", role, func(sc *scenarioContext) {
|
|
|
callDeleteFolder(sc)
|
|
callDeleteFolder(sc)
|
|
|
So(sc.resp.Code, ShouldEqual, 200)
|
|
So(sc.resp.Code, ShouldEqual, 200)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
createFolderScenario("When calling POST on", "/api/folders", "/api/folders", role, cmd, func(sc *scenarioContext) {
|
|
createFolderScenario("When calling POST on", "/api/folders", "/api/folders", role, cmd, func(sc *scenarioContext) {
|
|
|
callCreateFolder(sc)
|
|
callCreateFolder(sc)
|
|
|
So(sc.resp.Code, ShouldEqual, 200)
|
|
So(sc.resp.Code, ShouldEqual, 200)
|
|
|
})
|
|
})
|
|
|
|
|
+
|
|
|
|
|
+ updateFolderScenario("When calling PUT on", "/api/folders/uid", "/api/folders/:uid", role, updateFolderCmd, func(sc *scenarioContext) {
|
|
|
|
|
+ callUpdateFolder(sc)
|
|
|
|
|
+ So(sc.resp.Code, ShouldEqual, 200)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
|
|
+ })
|
|
|
})
|
|
})
|
|
|
})
|
|
})
|
|
|
|
|
|
|
@@ -136,8 +229,11 @@ func TestFoldersApiEndpoint(t *testing.T) {
|
|
|
fakeFolder.Id = 1
|
|
fakeFolder.Id = 1
|
|
|
fakeFolder.HasAcl = true
|
|
fakeFolder.HasAcl = true
|
|
|
|
|
|
|
|
|
|
+ var getDashboardQueries []*m.GetDashboardQuery
|
|
|
|
|
+
|
|
|
bus.AddHandler("test", func(query *m.GetDashboardQuery) error {
|
|
bus.AddHandler("test", func(query *m.GetDashboardQuery) error {
|
|
|
query.Result = fakeFolder
|
|
query.Result = fakeFolder
|
|
|
|
|
+ getDashboardQueries = append(getDashboardQueries, query)
|
|
|
return nil
|
|
return nil
|
|
|
})
|
|
})
|
|
|
|
|
|
|
@@ -163,50 +259,110 @@ func TestFoldersApiEndpoint(t *testing.T) {
|
|
|
Title: fakeFolder.Title,
|
|
Title: fakeFolder.Title,
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ updateFolderCmd := m.UpdateFolderCommand{
|
|
|
|
|
+ Title: fakeFolder.Title,
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
Convey("When user is an Org Viewer and has no permissions for this folder", func() {
|
|
Convey("When user is an Org Viewer and has no permissions for this folder", func() {
|
|
|
role := m.ROLE_VIEWER
|
|
role := m.ROLE_VIEWER
|
|
|
|
|
|
|
|
|
|
+ loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/uid", "/api/folders/:uid", role, func(sc *scenarioContext) {
|
|
|
|
|
+ callGetFolder(sc)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should be denied access", func() {
|
|
|
|
|
+ So(sc.resp.Code, ShouldEqual, 403)
|
|
|
|
|
+ })
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
|
- sc.handlerFunc = GetFolderById
|
|
|
|
|
- sc.fakeReqWithParams("GET", sc.url, map[string]string{}).exec()
|
|
|
|
|
|
|
+ callGetFolder(sc)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by id", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Id, ShouldEqual, 1)
|
|
|
|
|
+ })
|
|
|
|
|
|
|
|
Convey("Should be denied access", func() {
|
|
Convey("Should be denied access", func() {
|
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
|
})
|
|
})
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
- loggedInUserScenarioWithRole("When calling DELETE on", "DELETE", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
|
|
|
|
|
+ loggedInUserScenarioWithRole("When calling DELETE on", "DELETE", "/api/folders/uid", "/api/folders/:uid", role, func(sc *scenarioContext) {
|
|
|
callDeleteFolder(sc)
|
|
callDeleteFolder(sc)
|
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
createFolderScenario("When calling POST on", "/api/folders", "/api/folders", role, cmd, func(sc *scenarioContext) {
|
|
createFolderScenario("When calling POST on", "/api/folders", "/api/folders", role, cmd, func(sc *scenarioContext) {
|
|
|
callCreateFolder(sc)
|
|
callCreateFolder(sc)
|
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
|
})
|
|
})
|
|
|
|
|
+
|
|
|
|
|
+ updateFolderScenario("When calling PUT on", "/api/folders/uid", "/api/folders/:uid", role, updateFolderCmd, func(sc *scenarioContext) {
|
|
|
|
|
+ callUpdateFolder(sc)
|
|
|
|
|
+ So(sc.resp.Code, ShouldEqual, 403)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
|
|
+ })
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
Convey("When user is an Org Editor and has no permissions for this folder", func() {
|
|
Convey("When user is an Org Editor and has no permissions for this folder", func() {
|
|
|
role := m.ROLE_EDITOR
|
|
role := m.ROLE_EDITOR
|
|
|
|
|
|
|
|
|
|
+ loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/uid", "/api/folders/:uid", role, func(sc *scenarioContext) {
|
|
|
|
|
+ callGetFolder(sc)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should be denied access", func() {
|
|
|
|
|
+ So(sc.resp.Code, ShouldEqual, 403)
|
|
|
|
|
+ })
|
|
|
|
|
+ })
|
|
|
|
|
+
|
|
|
loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
loggedInUserScenarioWithRole("When calling GET on", "GET", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
|
- sc.handlerFunc = GetFolderById
|
|
|
|
|
- sc.fakeReqWithParams("GET", sc.url, map[string]string{}).exec()
|
|
|
|
|
|
|
+ callGetFolder(sc)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by id", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Id, ShouldEqual, 1)
|
|
|
|
|
+ })
|
|
|
|
|
|
|
|
Convey("Should be denied access", func() {
|
|
Convey("Should be denied access", func() {
|
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
|
})
|
|
})
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
- loggedInUserScenarioWithRole("When calling DELETE on", "DELETE", "/api/folders/1", "/api/folders/:id", role, func(sc *scenarioContext) {
|
|
|
|
|
|
|
+ loggedInUserScenarioWithRole("When calling DELETE on", "DELETE", "/api/folders/uid", "/api/folders/:uid", role, func(sc *scenarioContext) {
|
|
|
callDeleteFolder(sc)
|
|
callDeleteFolder(sc)
|
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
createFolderScenario("When calling POST on", "/api/folders", "/api/folders", role, cmd, func(sc *scenarioContext) {
|
|
createFolderScenario("When calling POST on", "/api/folders", "/api/folders", role, cmd, func(sc *scenarioContext) {
|
|
|
callCreateFolder(sc)
|
|
callCreateFolder(sc)
|
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
So(sc.resp.Code, ShouldEqual, 403)
|
|
|
})
|
|
})
|
|
|
|
|
+
|
|
|
|
|
+ updateFolderScenario("When calling PUT on", "/api/folders/uid", "/api/folders/:uid", role, updateFolderCmd, func(sc *scenarioContext) {
|
|
|
|
|
+ callUpdateFolder(sc)
|
|
|
|
|
+ So(sc.resp.Code, ShouldEqual, 403)
|
|
|
|
|
+
|
|
|
|
|
+ Convey("Should lookup folder by uid", func() {
|
|
|
|
|
+ So(getDashboardQueries[0].Uid, ShouldEqual, "uid")
|
|
|
|
|
+ })
|
|
|
|
|
+ })
|
|
|
})
|
|
})
|
|
|
})
|
|
})
|
|
|
}
|
|
}
|
|
@@ -224,7 +380,7 @@ func getFolderShouldReturn200(sc *scenarioContext) dtos.Folder {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
func callGetFolder(sc *scenarioContext) {
|
|
func callGetFolder(sc *scenarioContext) {
|
|
|
- sc.handlerFunc = GetFolderById
|
|
|
|
|
|
|
+ sc.handlerFunc = GetFolder
|
|
|
sc.fakeReqWithParams("GET", sc.url, map[string]string{}).exec()
|
|
sc.fakeReqWithParams("GET", sc.url, map[string]string{}).exec()
|
|
|
}
|
|
}
|
|
|
|
|
|