summaryrefslogtreecommitdiff
path: root/lua-resty-string-0.16/t/sha1.t
blob: 46096cdb2b646b1fe4b4ed130bc077262277b645 (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
89
90
91
92
# vi:ft=

use Test::Nginx::Socket::Lua;

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-1
--- http_config eval: $::HttpConfig
--- config
    location /t {
        content_by_lua '
            local resty_sha1 = require "resty.sha1"
            local str = require "resty.string"
            local sha1 = resty_sha1:new()
            ngx.say(sha1:update("hello"))
            local digest = sha1:final()
            ngx.say(digest == ngx.sha1_bin("hello"))
            ngx.say("sha1: ", str.to_hex(digest))
        ';
    }
--- request
GET /t
--- response_body
true
true
sha1: aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d
--- no_error_log
[error]



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



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