/****************************************************************************** * time.c * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include /* Nonzero if YEAR is a leap year (every 4 years, except every 100th isn't, and every 400th is). */ #define __isleap(year) \ ((year) % 4 == 0 && ((year) % 100 != 0 || (year) % 400 == 0)) /* How many days are in each month. */ const unsigned short int __mon_lengths[2][12] = { /* Normal years. */ {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}, /* Leap years. */ {31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31} }; #define SECS_PER_HOUR (60 * 60) #define SECS_PER_DAY (SECS_PER_HOUR * 24) struct tm gmtime(unsigned long t) { struct tm tbuf; long days, rem; int y; const unsigned short int *ip; days = t / SECS_PER_DAY; rem = t % SECS_PER_DAY; tbuf.tm_hour = rem / SECS_PER_HOUR; rem %= SECS_PER_HOUR; tbuf.tm_min = rem / 60; tbuf.tm_sec = rem % 60; /* January 1, 1970 was a Thursday. */ tbuf.tm_wday = (4 + days) % 7; if ( tbuf.tm_wday < 0 ) tbuf.tm_wday += 7; y = 1970; while ( days >= (rem = __isleap(y) ? 366 : 365) ) { ++y; days -= rem; } while ( days < 0 ) { --y; days += __isleap(y) ? 366 : 365; } tbuf.tm_year = y - 1900; tbuf.tm_yday = days; ip = (const unsigned short int *)__mon_lengths[__isleap(y)]; for ( y = 0; days >= ip[y]; ++y ) days -= ip[y]; tbuf.tm_mon = y; tbuf.tm_mday = days + 1; tbuf.tm_isdst = -1; return tbuf; } sSpec.js'>
blob: dc84001e8399d9b5412504107959822ae321e894 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import * as utils from '../../flow/utils'

describe('MessageUtils', () => {
    it('should be possible to get first header', () => {
        let msg = { headers: [["foo", "bar"]]}
        expect(utils.MessageUtils.get_first_header(msg, "foo")).toEqual("bar")
        expect(utils.MessageUtils.get_first_header(msg, "123")).toEqual(undefined)
    })

    it('should be possible to get Content-Type', () => {
        let type = "text/html",
            msg = { headers: [["Content-Type", type]]}
        expect(utils.MessageUtils.getContentType(msg)).toEqual(type)
    })

    it('should be possible to match header', () => {
        let h1 = ["foo", "bar"],
            msg = {headers : [h1]}
        expect(utils.MessageUtils.match_header(msg, /foo/i)).toEqual(h1)
        expect(utils.MessageUtils.match_header(msg, /123/i)).toBeFalsy()
    })

    it('should be possible to get content URL', () => {
        // request
        let msg = "foo", view = "bar",
            flow = { request: msg, id: 1}
        expect(utils.MessageUtils.getContentURL(flow, msg, view)).toEqual(
            "./flows/1/request/content/bar.json"
        )
        expect(utils.MessageUtils.getContentURL(flow, msg, '')).toEqual(
            "./flows/1/request/content.data"
        )
        // response
        flow = {response: msg, id: 2}
        expect(utils.MessageUtils.getContentURL(flow, msg, view)).toEqual(
            "./flows/2/response/content/bar.json"
        )
    })
})

describe('RequestUtils', () => {
    it('should be possible prettify url', () => {
        let request = {port: 4444, scheme: "http", pretty_host: "foo", path: "/bar"}
        expect(utils.RequestUtils.pretty_url(request)).toEqual(
            "http://foo:4444/bar"
        )
    })
})

describe('parseUrl', () => {
    it('should be possible to parse url', () => {
        let url = "http://foo:4444/bar"
        expect(utils.parseUrl(url)).toEqual({
            port: 4444,
            scheme: 'http',
            host: 'foo',
            path: '/bar'
        })

        expect(utils.parseUrl("foo:foo")).toBeFalsy()
    })
})

describe('isValidHttpVersion', () => {
    it('should be possible to validate http version', () => {
        expect(utils.isValidHttpVersion("HTTP/1.1")).toBeTruthy()
        expect(utils.isValidHttpVersion("HTTP//1")).toBeFalsy()
    })
})