|
92 | 92 | (defn parser-test-props [env]
|
93 | 93 | (props/for-all [{:keys [query errors? plugins]} (->> (base-gen)
|
94 | 94 | (gen/fmap #(update % :query p/remove-query-wildcard)))]
|
95 |
| - (let [parser (p/parser {::p/plugins plugins |
| 95 | + (let [plugins (mapv (comp deref resolve) plugins) |
| 96 | + parser (p/parser {::p/plugins plugins |
96 | 97 | :mutate pt/mutate-fn})
|
97 | 98 |
|
98 | 99 | async-parser (p/async-parser {::p/plugins plugins
|
|
112 | 113 | [{{::pc/keys [output]} ::pc/resolver-data} _]
|
113 | 114 | (pct/parser (assoc pct/parser-env ::pt/include-nils? false) output))
|
114 | 115 |
|
| 116 | +(defn profile-speed-props [env] |
| 117 | + (let [props (gen/generate (gen/vector-distinct gen/keyword-ns {:min-elements 8 |
| 118 | + :max-elements 100}) |
| 119 | + 4)] |
| 120 | + (props/for-all [query (s.query/make-gen {::s.query/gen-property |
| 121 | + (fn [_] (gen/elements props)) |
| 122 | + |
| 123 | + ::s.query/gen-params |
| 124 | + (fn [_] (gen/map gen/keyword gen/simple-type-printable {:max-elements 3}))} |
| 125 | + ::s.query/gen-query)] |
| 126 | + (let [plugins [pp/profile-plugin] |
| 127 | + parser (p/parser {::p/plugins plugins |
| 128 | + :mutate pt/mutate-fn}) |
| 129 | + |
| 130 | + async-parser (p/async-parser {::p/plugins plugins |
| 131 | + :mutate pt/mutate-fn}) |
| 132 | + {:keys [async-reader] :as env} env] |
| 133 | + (= (catch-run-parser parser env query) |
| 134 | + (catch-run-parser (comp <!! async-parser) (assoc env ::p/reader async-reader) query)))))) |
| 135 | + |
| 136 | +(test/defspec profile-speed |
| 137 | + {:max-size 16 :num-tests 30 |
| 138 | + :seed 1530060220973} (profile-speed-props pct/parser-env)) |
| 139 | + |
| 140 | +(comment |
| 141 | + (let [props (gen/generate (gen/vector-distinct gen/keyword-ns {:min-elements 8 |
| 142 | + :max-elements 100}) |
| 143 | + 4) |
| 144 | + query-gen (s.query/make-gen {::s.query/gen-property |
| 145 | + (fn [_] (gen/elements props)) |
| 146 | + |
| 147 | + ::s.query/gen-params |
| 148 | + (fn [_] (gen/map gen/keyword gen/simple-type-printable {:max-elements 3}))} |
| 149 | + ::s.query/gen-query) |
| 150 | + queries (take 20 (gen/sample-seq query-gen 16))] |
| 151 | + (def queries queries)) |
| 152 | + |
| 153 | + (let [env pct/parser-env |
| 154 | + plugins [pp/profile-plugin] |
| 155 | + parser (p/parser {::p/plugins plugins |
| 156 | + :mutate pt/mutate-fn}) |
| 157 | + |
| 158 | + async-parser (p/async-parser {::p/plugins plugins |
| 159 | + :mutate pt/mutate-fn}) |
| 160 | + {:keys [async-reader] :as env} env] |
| 161 | + |
| 162 | + (doseq [query queries] |
| 163 | + (parser env query)) |
| 164 | + |
| 165 | + #_ |
| 166 | + (criterium/with-progress-reporting |
| 167 | + (criterium/bench |
| 168 | + (doseq [query queries] |
| 169 | + #_ (parser env query) |
| 170 | + ((comp <!! async-parser) (assoc env ::p/reader async-reader) query))))) |
| 171 | + |
| 172 | + (time |
| 173 | + (clojure.test/test-vars [#'profile-speed])) |
| 174 | + |
| 175 | + (criterium/with-progress-reporting |
| 176 | + (criterium/bench |
| 177 | + (clojure.test/test-vars [#'profile-speed])))) |
| 178 | + |
115 | 179 | (defn async-resolve-fn
|
116 | 180 | [{{::pc/keys [output]} ::pc/resolver-data :as env} _]
|
117 | 181 | (if (-> env :ast :key (pt/hash-mod? 3))
|
|
194 | 258 | :query [(A {})]
|
195 | 259 | :type :call})
|
196 | 260 |
|
197 |
| - (let [{:keys [query plugins errors?]} {:query [#:N3Sq!.+!w?0.j+?_.lG+{:x?d? [:hP0*/dN04E]}], :errors? false, :plugins []} |
| 261 | + (let [{:keys [query plugins errors?]} {:query '[:A.?d!.!W_l.Zj/j?+y |
| 262 | + {:A.?d!.!W_l.Zj/j?+y |
| 263 | + [{:a [:foo]}]}], :errors? false, :plugins [pp/profile-plugin]} |
198 | 264 | env pct/parser-env]
|
199 | 265 | (let [parser (p/parser {::p/plugins plugins
|
200 | 266 | :mutate pt/mutate-fn})
|
|
0 commit comments