2021-07-01 07:24:35 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
|
|
require "test_helper"
|
2021-04-01 10:59:27 +00:00
|
|
|
|
|
|
|
|
class AppsControllerTest < ActionDispatch::IntegrationTest
|
2021-04-29 06:41:23 +00:00
|
|
|
def setup
|
2021-07-01 07:24:35 +00:00
|
|
|
@org = Organization.create({ name: "ToolJet Test" })
|
|
|
|
|
@admin = User.create({ first_name: "Admin", email: "admin@example.com", password: "password",
|
2021-04-29 06:41:23 +00:00
|
|
|
organization: @org })
|
2021-07-01 07:24:35 +00:00
|
|
|
@developer = User.create({ first_name: "Dev", email: "dev@example.com", password: "password",
|
2021-04-29 06:41:23 +00:00
|
|
|
organization: @org })
|
2021-07-01 07:24:35 +00:00
|
|
|
@viewer = User.create({ first_name: "Viewer", email: "viewer@example.com", password: "password",
|
2021-04-29 06:41:23 +00:00
|
|
|
organization: @org })
|
2021-07-01 07:24:35 +00:00
|
|
|
OrganizationUser.create(organization: @org, user: @admin, role: "admin", status: "active")
|
|
|
|
|
OrganizationUser.create(organization: @org, user: @developer, role: "developer", status: "active")
|
|
|
|
|
OrganizationUser.create(organization: @org, user: @viewer, role: "viewer", status: "active")
|
2021-04-29 06:41:23 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
@another_org = Organization.create({ name: "Another ToolJet Test" })
|
|
|
|
|
@another_org_admin = User.create({ first_name: "Admin", email: "admin@domain.com", password: "password",
|
2021-04-29 06:41:23 +00:00
|
|
|
organization: @another_org })
|
2021-07-01 07:24:35 +00:00
|
|
|
OrganizationUser.create(organization: @another_org, user: @another_org_admin, role: "admin", status: "active")
|
2021-04-29 06:41:23 +00:00
|
|
|
end
|
2021-04-25 12:35:36 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
test "admins can create apps" do
|
|
|
|
|
assert_difference "App.count", 1 do
|
|
|
|
|
post apps_url, params: { name: "Test App" }, as: :json, headers: auth_header(@admin)
|
2021-04-25 12:35:36 +00:00
|
|
|
end
|
|
|
|
|
|
2021-04-29 06:41:23 +00:00
|
|
|
assert_response 200
|
|
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
get apps_url, headers: { "Content-Type": "application/json" }.merge(auth_header(@admin)), xhr: true
|
2021-04-29 06:41:23 +00:00
|
|
|
assert_response 200
|
2021-07-01 07:24:35 +00:00
|
|
|
assert_equal 1, JSON.parse(response.body)["apps"].count
|
2021-04-29 06:41:23 +00:00
|
|
|
end
|
|
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
test "developers cannot create apps" do
|
|
|
|
|
assert_no_difference "App.count" do
|
|
|
|
|
post apps_url, params: { name: "Test App" }, as: :json, headers: auth_header(@developer)
|
2021-04-25 12:35:36 +00:00
|
|
|
end
|
|
|
|
|
|
2021-04-29 06:41:23 +00:00
|
|
|
assert_response 403
|
|
|
|
|
end
|
|
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
test "viewers cannot create apps" do
|
|
|
|
|
assert_no_difference "App.count" do
|
|
|
|
|
post apps_url, params: { name: "Test App" }, as: :json, headers: auth_header(@viewer)
|
2021-04-25 12:35:36 +00:00
|
|
|
end
|
|
|
|
|
|
2021-04-29 06:41:23 +00:00
|
|
|
assert_response 403
|
|
|
|
|
end
|
2021-04-25 12:35:36 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
test "all org users can GET app" do
|
|
|
|
|
app = App.create(name: "Test App", organization: @org)
|
2021-04-25 12:35:36 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
get app_url(app.id), headers: { "Content-Type": "application/json" }.merge(auth_header(@admin)), xhr: true
|
2021-04-29 06:41:23 +00:00
|
|
|
assert_response 200
|
2021-04-25 12:35:36 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
get app_url(app.id), headers: { "Content-Type": "application/json" }.merge(auth_header(@developer)), xhr: true
|
2021-04-29 06:41:23 +00:00
|
|
|
assert_response 200
|
2021-04-25 12:35:36 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
get app_url(app.id), headers: { "Content-Type": "application/json" }.merge(auth_header(@viewer)), xhr: true
|
2021-04-29 06:41:23 +00:00
|
|
|
assert_response 200
|
|
|
|
|
end
|
2021-04-25 12:35:36 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
test "non org users cannot GET app" do
|
|
|
|
|
app = App.create(name: "Test App", organization: @org)
|
2021-04-25 12:35:36 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
get app_url(app.id), headers: { "Content-Type": "application/json" }.merge(auth_header(@another_org_admin)),
|
2021-04-29 06:41:23 +00:00
|
|
|
xhr: true
|
|
|
|
|
assert_response 403
|
|
|
|
|
end
|
2021-04-25 12:35:36 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
test "users cannot list another orgs apps" do
|
|
|
|
|
app = App.create(name: "Test App", organization: @org)
|
2021-04-25 12:35:36 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
get apps_url, headers: { "Content-Type": "application/json" }.merge(auth_header(@another_org_admin)), xhr: true
|
2021-04-29 06:41:23 +00:00
|
|
|
assert_response 200
|
2021-07-01 07:24:35 +00:00
|
|
|
assert_equal 0, JSON.parse(response.body)["apps"].size
|
2021-04-29 06:41:23 +00:00
|
|
|
end
|
|
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
test "org users can list orgs apps" do
|
|
|
|
|
app = App.create(name: "Test App", organization: @org)
|
2021-04-29 06:41:23 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
get apps_url, headers: { "Content-Type": "application/json" }.merge(auth_header(@admin)), xhr: true
|
2021-04-29 06:41:23 +00:00
|
|
|
assert_response 200
|
2021-07-01 07:24:35 +00:00
|
|
|
assert_equal 1, JSON.parse(response.body)["apps"].size
|
2021-04-29 06:41:23 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
get apps_url, headers: { "Content-Type": "application/json" }.merge(auth_header(@developer)), xhr: true
|
2021-04-29 06:41:23 +00:00
|
|
|
assert_response 200
|
2021-07-01 07:24:35 +00:00
|
|
|
assert_equal 1, JSON.parse(response.body)["apps"].size
|
2021-04-29 06:41:23 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
get apps_url, headers: { "Content-Type": "application/json" }.merge(auth_header(@viewer)), xhr: true
|
2021-04-29 06:41:23 +00:00
|
|
|
assert_response 200
|
2021-07-01 07:24:35 +00:00
|
|
|
assert_equal 1, JSON.parse(response.body)["apps"].size
|
2021-04-29 06:41:23 +00:00
|
|
|
end
|
2021-05-07 08:25:09 +00:00
|
|
|
|
2021-07-01 07:24:35 +00:00
|
|
|
test "anyone can view public apps" do
|
|
|
|
|
app = App.create(name: "Test App", organization: @org, is_public: true)
|
|
|
|
|
get app_url(app.id), headers: { "Content-Type": "application/json" },
|
2021-05-07 08:25:09 +00:00
|
|
|
xhr: true
|
|
|
|
|
assert_response 200
|
|
|
|
|
end
|
2021-04-29 06:41:23 +00:00
|
|
|
end
|