2023-12-01 16:47:54 +01:00
import { click , visit } from "@ember/test-helpers" ;
import { test } from "qunit" ;
import { clearPopupMenuOptionsCallback } from "discourse/controllers/composer" ;
2021-02-18 15:06:22 +04:00
import {
acceptance ,
exists ,
query ,
queryAll ,
} from "discourse/tests/helpers/qunit-helpers" ;
import I18n from "I18n" ;
acceptance ( "Data Explorer Plugin | Run Query" , function ( needs ) {
needs . user ();
needs . settings ({ data_explorer_enabled : true });
needs . hooks . beforeEach (() => {
clearPopupMenuOptionsCallback ();
});
needs . pretender (( server , helper ) => {
server . get ( "/admin/plugins/explorer/groups.json" , () => {
return helper . response ([
{
id : 1 ,
name : "admins" ,
},
{
id : 2 ,
name : "moderators" ,
},
{
id : 3 ,
name : "staff" ,
},
{
id : 0 ,
name : "everyone" ,
},
{
id : 10 ,
name : "trust_level_0" ,
},
{
id : 11 ,
name : "trust_level_1" ,
},
{
id : 12 ,
name : "trust_level_2" ,
},
{
id : 13 ,
name : "trust_level_3" ,
},
{
id : 14 ,
name : "trust_level_4" ,
},
]);
});
server . get ( "/admin/plugins/explorer/schema.json" , () => {
return helper . response ({
anonymous_users : [
{
column_name : "id" ,
data_type : "serial" ,
primary : true ,
},
{
column_name : "user_id" ,
data_type : "integer" ,
fkey_info : "users" ,
},
{
column_name : "master_user_id" ,
data_type : "integer" ,
fkey_info : "users" ,
},
{
column_name : "active" ,
data_type : "boolean" ,
},
{
column_name : "created_at" ,
data_type : "timestamp" ,
},
{
column_name : "updated_at" ,
data_type : "timestamp" ,
},
],
});
});
server . get ( "/admin/plugins/explorer/queries" , () => {
return helper . response ({
queries : [
{
id : - 6 ,
2022-06-17 15:01:34 +02:00
sql : "-- [params]\n-- int :months_ago = 1\n\nWITH query_period AS (\n SELECT\n date_trunc('month', CURRENT_DATE) - INTERVAL ':months_ago months' as period_start,\n date_trunc('month', CURRENT_DATE) - INTERVAL ':months_ago months' + INTERVAL '1 month' - INTERVAL '1 second' as period_end\n )\n\n SELECT\n ua.user_id,\n count(1) AS like_count\n FROM user_actions ua\n INNER JOIN query_period qp\n ON ua.created_at >= qp.period_start\n AND ua.created_at <= qp.period_end\n WHERE ua.action_type = 1\n GROUP BY ua.user_id\n ORDER BY like_count DESC\n LIMIT 100\n" ,
2021-02-18 15:06:22 +04:00
name : "Top 100 Likers" ,
description :
"returns the top 100 likers for a given monthly period ordered by like_count. It accepts a ‘ months_ago’ parameter, defaults to 1 to give results for the last calendar month." ,
param_info : [
{
identifier : "months_ago" ,
type : "int" ,
default : "1" ,
nullable : false ,
},
],
created_at : "2021-02-02T12:21:11.449Z" ,
username : "system" ,
group_ids : [],
last_run_at : "2021-02-11T08:29:59.337Z" ,
hidden : false ,
user_id : - 1 ,
},
2023-05-04 19:45:43 -03:00
{
id : 2 ,
sql : 'SELECT 0 zero, null "null", false "false"' ,
name : "What about 0?" ,
description : "" ,
param_info : [],
created_at : "2023-05-04T22:16:06.007Z" ,
username : "system" ,
group_ids : [],
last_run_at : "2023-05-04T22:16:23.858Z" ,
hidden : false ,
user_id : 1 ,
},
2021-02-18 15:06:22 +04:00
],
});
});
server . post ( "/admin/plugins/explorer/queries/-6/run" , () => {
return helper . response ({
success : true ,
errors : [],
duration : 27.5 ,
result_count : 2 ,
params : { months_ago : "1" },
columns : [ "user_id" , "like_count" ],
default_limit : 1000 ,
relations : {
user : [
{
id : - 2 ,
username : "discobot" ,
name : null ,
avatar_template : "/user_avatar/localhost/discobot/{size}/2_2.png" ,
},
{
id : 2 ,
username : "andrey1" ,
name : null ,
avatar_template :
"/letter_avatar_proxy/v4/letter/a/c0e974/{size}.png" ,
},
],
},
colrender : {
0 : "user" ,
},
rows : [
[ - 2 , 2 ],
[ 2 , 2 ],
],
});
});
2023-05-04 19:45:43 -03:00
server . post ( "/admin/plugins/explorer/queries/2/run" , () => {
return helper . response ({
success : true ,
errors : [],
duration : 1.0 ,
result_count : 1 ,
params : {},
columns : [ "zero" , "null" , "false" ],
default_limit : 1000 ,
relations : {},
colrender : {},
rows : [[ 0 , null , false ]],
});
});
2021-02-18 15:06:22 +04:00
});
test ( "it runs query and renders data and a chart" , async function ( assert ) {
2023-11-21 22:23:35 +01:00
await visit ( "/admin/plugins/explorer?id=-6" );
2021-02-18 15:06:22 +04:00
assert . ok (
query ( "div.name h1" ). innerText . trim () === "Top 100 Likers" ,
"the query name was rendered"
);
assert . ok ( exists ( "div.query-edit" ), "the query code was rendered" );
assert . ok (
query ( "form.query-run button span" ). innerText . trim () ===
I18n . t ( "explorer.run" ),
"the run button was rendered"
);
await click ( "form.query-run button" );
assert . ok (
queryAll ( "div.query-results table tbody tr" ). length === 2 ,
"the table with query results was rendered"
);
2022-12-20 12:09:37 -06:00
2021-02-18 15:06:22 +04:00
assert . ok (
query ( "div.result-info button:nth-child(3) span" ). innerText . trim () ===
I18n . t ( "explorer.show_graph" ),
"the chart button was rendered"
);
await click ( "div.result-info button:nth-child(3)" );
2021-08-23 11:04:40 +02:00
assert . ok ( exists ( "canvas" ), "the chart was rendered" );
2021-02-18 15:06:22 +04:00
});
2023-05-04 19:45:43 -03:00
test ( "it runs query and renders 0, false, and NULL values correctly" , async function ( assert ) {
2023-11-21 22:23:35 +01:00
await visit ( "/admin/plugins/explorer?id=2" );
2023-05-04 19:45:43 -03:00
assert . ok (
query ( "div.name h1" ). innerText . trim () === "What about 0?" ,
"the query name was rendered"
);
assert . ok (
query ( "form.query-run button span" ). innerText . trim () ===
I18n . t ( "explorer.run" ),
"the run button was rendered"
);
await click ( "form.query-run button" );
assert . ok (
query ( "div.query-results tbody td:nth-child(1)" ). innerText . trim () === "0" ,
"renders '0' values"
);
assert . ok (
query ( "div.query-results tbody td:nth-child(2)" ). innerText . trim () ===
"NULL" ,
"renders 'NULL' values"
);
assert . ok (
query ( "div.query-results tbody td:nth-child(3)" ). innerText . trim () ===
"false" ,
"renders 'false' values"
);
});
2021-02-18 15:06:22 +04:00
});