2023-12-01 10:47:54 -05:00
import { visit } from "@ember/test-helpers" ;
import { test } from "qunit" ;
2024-08-28 07:51:37 -04:00
import { acceptance } from "discourse/tests/helpers/qunit-helpers" ;
import I18n from "discourse-i18n" ;
2021-04-15 03:23:09 -04:00
acceptance ( "Data Explorer Plugin | List Queries" , function ( needs ) {
needs . user ( ) ;
needs . settings ( { data _explorer _enabled : true } ) ;
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 : - 5 ,
2022-06-17 09:01:34 -04:00
sql : "-- [params]\n-- int :months_ago = 1\n\nWITH query_period AS\n(SELECT 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)\nSELECT t.id AS topic_id,\n t.category_id,\n COUNT(p.id) AS reply_count\nFROM topics t\nJOIN posts p ON t.id = p.topic_id\nJOIN query_period qp ON p.created_at >= qp.period_start\nAND p.created_at <= qp.period_end\nWHERE t.archetype = 'regular'\nAND t.user_id > 0\nGROUP BY t.id\nORDER BY COUNT(p.id) DESC, t.score DESC\nLIMIT 100\n" ,
2021-04-15 03:23:09 -04:00
name : "Top 100 Active Topics" ,
description :
"based on the number of replies, 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-05T16:42:45.572Z" ,
username : "system" ,
group _ids : [ ] ,
last _run _at : "2021-02-08T15:37:49.188Z" ,
hidden : false ,
user _id : - 1 ,
} ,
{
id : - 6 ,
2022-06-17 09:01:34 -04: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-04-15 03:23:09 -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 ,
} ,
] ,
} ) ;
} ) ;
} ) ;
2024-08-28 07:51:37 -04:00
test ( "renders the page with the list of queries" , async function ( assert ) {
2023-11-21 16:23:35 -05:00
await visit ( "/admin/plugins/explorer" ) ;
2021-04-15 03:23:09 -04:00
2024-08-28 07:51:37 -04:00
assert
. dom ( "div.query-list input.ember-text-field" )
. hasAttribute (
"placeholder" ,
2021-04-15 03:23:09 -04:00
I18n . t ( "explorer.search_placeholder" ) ,
2024-08-28 07:51:37 -04:00
"the search box was rendered"
) ;
2021-04-15 03:23:09 -04:00
2024-08-28 07:51:37 -04:00
assert
. dom ( "div.query-list button.btn-icon svg.d-icon-plus" )
. exists ( "the add query button was rendered" ) ;
2021-04-15 03:23:09 -04:00
2024-08-28 07:51:37 -04:00
assert
. dom ( "div.query-list button.btn-icon-text span.d-button-label" )
. hasText (
I18n . t ( "explorer.import.label" ) ,
"the import button was rendered"
) ;
2021-04-15 03:23:09 -04:00
2024-08-28 07:51:37 -04:00
assert
. dom ( "div.container table.recent-queries tbody tr" )
. exists ( { count : 2 } , "the list of queries was rendered" ) ;
2021-04-15 03:23:09 -04:00
2024-08-28 07:51:37 -04:00
assert
. dom ( "div.container table.recent-queries tbody tr:nth-child(1) td a" )
. hasText ( /^\s*Top 100 Likers/ , "The first query was rendered" ) ;
2021-04-15 03:23:09 -04:00
2024-08-28 07:51:37 -04:00
assert
. dom ( "div.container table.recent-queries tbody tr:nth-child(2) td a" )
. hasText ( /^\s*Top 100 Active Topics/ , "The second query was rendered" ) ;
2021-04-15 03:23:09 -04:00
} ) ;
} ) ;