Warning: session_start(): open(/var/lib/php/sessions/sess_33q7sgp4ffjh6ljgogie5pl4bk, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
!752
p {
S snippetID = "#1002079";
startBot("Snippet MD5 Bot", "#1002079");
S answer = sendToLocalBot("Snippet MD5 Bot", "what is the md5 of snippet " + snippetID);
new Matches m;
assertTrue(match("The md5 of snippet * is *", answer, m));
S md5 = m.unq(1);
print("md5 from bot: " + md5);
S text = loadSnippet(snippetID);
S md5_2 = md5(text);
print("md5 from actual text: " + md5_2);
assertEquals(md5, md5_2);
print("all clear!");
}