aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/test/aedifex/repository/remote.lux
blob: a38e681048c3e367336f90d587381e6b1ed44eb0 (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
(.module:
  [library
   [lux "*"
    ["_" test {"+" [Test]}]
    [abstract
     [monad {"+" [do]}]]
    [control
     ["." io {"+" [IO]}]
     ["." maybe ("#\." functor)]
     ["." try ("#\." monad)]
     ["." exception]
     ["." function]]
    [data
     ["." binary ("#\." equivalence)]
     ["." text ("#\." equivalence)
      ["%" format {"+" [format]}]
      [encoding
       ["." utf8]]]
     [collection
      ["." dictionary]]]
    [math
     ["." random {"+" [Random]}]]
    [world
     [net {"+" [URL]}
      ["." http "_"
       ["#" client]
       ["#/." status]
       ["@#" /]]]]]]
  [\\program
   ["." /
    ["/#" // "_"
     ["#." identity]]]])

(def: (url_body url)
  (-> URL (@http.Body IO))
  (let [url (\ utf8.codec encoded url)]
    (function (_ _)
      (io.io (#try.Success [(binary.size url) url])))))

(def: (good_http user password)
  (-> //identity.User //identity.Password (http.Client IO))
  (implementation
   (def: (request method url headers input)
     (with_expansions [<failure> [http/status.bad_request
                                  [#@http.headers (http.headers (list))
                                   #@http.body (..url_body "")]]]
       (<| io.io
           #try.Success
           (if (|> headers
                   (dictionary.value "User-Agent")
                   (maybe\each (same? /.user_agent))
                   (maybe.else false))
             (case [method input]
               [#@http.Get #.None]
               [http/status.ok
                [#@http.headers (http.headers (list))
                 #@http.body (..url_body url)]]
               
               [#@http.Put (#.Some input)]
               (if (|> headers
                       (dictionary.value "Authorization")
                       (maybe\each (text\= (//identity.basic_auth user password)))
                       (maybe.else false))
                 [http/status.created
                  [#@http.headers (http.headers (list))
                   #@http.body (..url_body url)]]
                 <failure>)
               
               _
               <failure>)
             <failure>))))))

(def: bad_http
  (http.Client IO)
  (implementation
   (def: (request method url headers input)
     (<| io.io
         #try.Success
         [http/status.bad_request
          [#@http.headers (http.headers (list))
           #@http.body (..url_body "")]]))))

(def: .public test
  Test
  (<| (_.covering /._)
      (do {! random.monad}
        [address (random.ascii/upper 10)
         uri (random.ascii/lower 10)

         user (random.ascii/lower 10)
         password (random.ascii/lower 10)

         content (\ ! each (\ utf8.codec encoded)
                    (random.ascii/lower 10))]
        ($_ _.and
            (_.cover [/.repository /.user_agent /.Address]
                     (let [repo (/.repository (..good_http user password)
                                              (#.Some [#//identity.user user
                                                       #//identity.password password])
                                              address)]
                       (and (|> (\ repo download uri)
                                io.run!
                                (try\each (\ utf8.codec decoded))
                                try\conjoint
                                (try\each (text\= (format address uri)))
                                (try.else false))
                            (|> (\ repo upload uri content)
                                io.run!
                                (try\each (function.constant true))
                                (try.else false)))))
            (_.cover [/.upload_failure]
                     (let [repo (/.repository (..good_http user password)
                                              #.None
                                              address)]
                       (case (io.run! (\ repo upload uri content))
                         (#try.Failure error)
                         (exception.match? /.upload_failure error)
                         
                         (#try.Success _)
                         false)))
            (_.cover [/.download_failure]
                     (let [repo (/.repository ..bad_http
                                              #.None
                                              address)]
                       (case (io.run! (\ repo download uri))
                         (#try.Failure error)
                         (exception.match? /.download_failure error)
                         
                         (#try.Success _)
                         false)))
            ))))