#include "../common/dirs.h"
#include "../common/filename.h"
#include "../common/mime.h"
+#include "../common/svrblist.h"
TEST(CommonFunctions, GetUserDir){
TEST(CommonFunctions, GetMIME){
+ // Get the MIME type based on the files given.
+
ASSERT_EQ("text/plain", GetMIME("TextMIMEExample.txt"));
ASSERT_EQ("image/png", GetMIME("PictureMIMEExample.png"));
+}
+
+TEST(CommonFunctions, CheckBlacklist){
+
+ // Test that the blacklist is actually working.
+
+ ASSERT_EQ(false, CheckBlacklist("example.com"));
+ ASSERT_EQ(true, CheckBlacklist("google.com"));
+
}
\ No newline at end of file