aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/http/misc/httpdate_ut.cpp
blob: ac4e54063e77f6af11da26dd4cf867dfe459d53e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <library/cpp/testing/unittest/registar.h>
 
#include "httpdate.h" 
 
Y_UNIT_TEST_SUITE(TestHttpDate) {
    Y_UNIT_TEST(Test1) {
        char buf1[100]; 
        char buf2[100]; 
 
        UNIT_ASSERT((int)strlen(format_http_date(0, buf1, sizeof(buf1))) == format_http_date(buf2, sizeof(buf2), 0)); 
    } 
    Y_UNIT_TEST(Test2) {
        UNIT_ASSERT_STRINGS_EQUAL(FormatHttpDate(1234567890), "Fri, 13 Feb 2009 23:31:30 GMT");
    }
}