drbotzo-idlerpg/tests/fixtures/simple_character.json
Brian S. Stephan 14a1c5ceb6
get more IRC bot functionality under test
remove a character, get character status, and the main level up check
thread

Signed-off-by: Brian S. Stephan <bss@incorporeal.org>
2024-05-16 22:01:12 -05:00

115 lines
2.9 KiB
JSON

[
{
"model": "ircbot.ircserver",
"pk": 1,
"fields": {
"name": "default",
"hostname": "irc.example.org",
"port": 6667,
"password": null,
"nickname": "",
"realname": "",
"additional_addressed_nicks": "",
"use_ssl": false,
"use_ipv6": false,
"post_connect": "",
"delay_before_joins": 0,
"xmlrpc_host": "localhost",
"xmlrpc_port": 13132,
"replace_irc_control_with_markdown": false
}
},
{
"model": "ircbot.ircchannel",
"pk": 1,
"fields": {
"name": "#test",
"server": 1,
"autojoin": false,
"topic_msg": "",
"topic_time": "2024-05-06T05:10:25.154Z",
"topic_by": "",
"markov_learn_from_channel": true,
"discord_bridge": ""
}
},
{
"model": "ircbot.ircchannel",
"pk": 2,
"fields": {
"name": "#level_test",
"server": 1,
"autojoin": false,
"topic_msg": "",
"topic_time": "2024-05-06T05:10:25.154Z",
"topic_by": "",
"markov_learn_from_channel": true,
"discord_bridge": ""
}
},
{
"model": "idlerpg.game",
"pk": 1,
"fields": {
"name": "test",
"active": true,
"channel": 1
}
},
{
"model": "idlerpg.game",
"pk": 2,
"fields": {
"name": "level test",
"active": true,
"channel": 2
}
},
{
"model": "idlerpg.character",
"pk": 1,
"fields": {
"name": "bss",
"password": "pbkdf2_sha256$720000$A941t4dL96zzqeldCFucrr$Pof137/IjT3p//ZR+iYNoBnGmYPG6jLbNqenwMA3hHY=",
"hostmask": "bss!bss@bss",
"status": "LOGGEDIN",
"character_class": "tester",
"level": 0,
"next_level": "2024-05-05T05:20:45.437Z",
"created": "2024-05-05T05:10:45.438Z",
"last_login": "2024-05-05T05:10:45.437Z",
"time_penalized_nick_change": 0,
"time_penalized_part": 0,
"time_penalized_quit": 0,
"time_penalized_logout": 0,
"time_penalized_kicked": 0,
"time_penalized_privmsg": 0,
"time_penalized_notice": 0,
"game": 1
}
},
{
"model": "idlerpg.character",
"pk": 2,
"fields": {
"name": "bss2",
"password": "pbkdf2_sha256$720000$A941t4dL96zzqeldCFucrr$Pof137/IjT3p//ZR+iYNoBnGmYPG6jLbNqenwMA3hHY=",
"hostmask": "bss2!bss@bss",
"status": "OFFLINE",
"character_class": "tester",
"level": 0,
"next_level": "2024-05-05T05:20:45.437Z",
"created": "2024-05-05T05:10:45.438Z",
"last_login": "2024-05-05T05:10:45.437Z",
"time_penalized_nick_change": 0,
"time_penalized_part": 0,
"time_penalized_quit": 0,
"time_penalized_logout": 0,
"time_penalized_kicked": 0,
"time_penalized_privmsg": 0,
"time_penalized_notice": 0,
"game": 1
}
}
]