summaryrefslogtreecommitdiff
path: root/lua-resty-string-0.16/t/sha384.t
blob: f8ca8fa834e05b473547d1c515a7ca503802ff5b (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# vi:ft=

use Test::Nginx::Socket;

repeat_each(2);

plan tests => repeat_each() * (3 * blocks());

our $HttpConfig = <<'_EOC_';
    #lua_code_cache off;
    lua_package_path 'lib/?.lua;;';
    lua_package_cpath 'lib/?.so;;';
_EOC_

no_long_string();

run_tests();

__DATA__

=== TEST 1: hello SHA-384
--- http_config eval: $::HttpConfig
--- config
    location /t {
        content_by_lua '
            local resty_sha384 = require "resty.sha384"
            local str = require "resty.string"
            local sha384 = resty_sha384:new()
            ngx.say(sha384:update("hello"))
            local digest = sha384:final()
            ngx.say("sha384: ", str.to_hex(digest))
        ';
    }
--- request
GET /t
--- response_body
true
sha384: 59e1748777448c69de6b800d7a33bbfb9ff1b463e44354c3553bcdb9c666fa90125a3c79f90397bdf5f6a13de828684f
--- no_error_log
[error]



=== TEST 2: SHA-384 incremental
--- http_config eval: $::HttpConfig
--- config
    location /t {
        content_by_lua '
            local resty_sha384 = require "resty.sha384"
            local str = require "resty.string"
            local sha384 = resty_sha384:new()
            ngx.say(sha384:update("hel"))
            ngx.say(sha384:update("lo"))
            local digest = sha384:final()
            ngx.say("sha384: ", str.to_hex(digest))
        ';
    }
--- request
GET /t
--- response_body
true
true
sha384: 59e1748777448c69de6b800d7a33bbfb9ff1b463e44354c3553bcdb9c666fa90125a3c79f90397bdf5f6a13de828684f
--- no_error_log
[error]



=== TEST 3: SHA-384 empty string
--- http_config eval: $::HttpConfig
--- config
    location /t {
        content_by_lua '
            local resty_sha384 = require "resty.sha384"
            local str = require "resty.string"
            local sha384 = resty_sha384:new()
            ngx.say(sha384:update(""))
            local digest = sha384:final()
            ngx.say("sha384: ", str.to_hex(digest))
        ';
    }
--- request
GET /t
--- response_body
true
sha384: 38b060a751ac96384cd9327eb1b1e36a21fdb71114be07434c0cc7bf63f6e1da274edebfe76f65fbd51ad2f14898b95b
--- no_error_log
[error]