diff --git a/htmlReport/css/coverage.css b/htmlReport/css/coverage.css new file mode 100644 index 0000000..cef7765 --- /dev/null +++ b/htmlReport/css/coverage.css @@ -0,0 +1,154 @@ +/* + * Copyright 2000-2021 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +* { + margin: 0; + padding: 0; +} + +body { + background-color: #fff; + font-family: helvetica neue, tahoma, arial, sans-serif; + font-size: 82%; + color: #151515; +} + +h1 { + margin: 0.5em 0; + color: #010101; + font-weight: normal; + font-size: 18px; +} + +h2 { + margin: 0.5em 0; + color: #010101; + font-weight: normal; + font-size: 16px; +} + +a { + color: #1564C2; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +span.separator { + color: #9BA9BA; + padding-left: 5px; + padding-right: 5px; +} + +div.content { + width: 99%; +} + +table.coverageStats { + width: 100%; + border-collapse: collapse; +} + +table.overallStats { + width: 20%; +} + +table.coverageStats td, table.coverageStats th { + padding: 4px 2px; + border-bottom: 1px solid #ccc; +} + +table.coverageStats th { + background-color: #959BA4; + border: none; + font-weight: bold; + text-align: left; + color: #FFF; +} + +table.coverageStats th.coverageStat { + width: 15%; +} + +table.coverageStats th a { + color: #FFF; +} + +table.coverageStats th a:hover { + text-decoration: none; +} + +table.coverageStats th.sortedDesc a { + background: url(../img/arrowDown.gif) no-repeat 100% 2px; + padding-right: 20px; +} + +table.coverageStats th.sortedAsc a { + background: url(../img/arrowUp.gif) no-repeat 100% 2px; + padding-right: 20px; +} + +div.footer { + margin: 2em .5em; + font-size: 85%; + text-align: left; + line-height: 140%; +} + +code.sourceCode { + width: 100%; + border: 1px solid #ccc; + font: normal 12px 'Menlo', 'Bitstream Vera Sans Mono', 'Courier New', 'Courier', monospace; + white-space: pre; +} + +code.sourceCode b { + font-weight: normal; +} + +code.sourceCode span.number { + color: #151515; +} + +code.sourceCode .fc { + background-color: #cfc; +} + +code.sourceCode .pc { + background-color: #ffc; +} + +code.sourceCode .nc { + background-color: #fcc; +} + +.percent, .absValue { + font-size: 90%; +} + +.percent .green, .absValue .green { + color: #32cc32; +} + +.percent .red, .absValue .red { + color: #f00; +} + +.percent .totalDiff { + color: #3f3f3f; +} diff --git a/htmlReport/css/idea.min.css b/htmlReport/css/idea.min.css new file mode 100644 index 0000000..a8d5292 --- /dev/null +++ b/htmlReport/css/idea.min.css @@ -0,0 +1,118 @@ +/* + * Copyright 2000-2021 JetBrains s.r.o. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/* +Intellij Idea-like styling (c) Vasily Polovnyov +*/ + +.hljs { + color: #000; + background: #fff; +} + +.hljs-subst, +.hljs-title { + font-weight: normal; + color: #000; +} + +.hljs-comment, +.hljs-quote { + color: #808080; + font-style: italic; +} + +.hljs-meta { + color: #808000; +} + +.hljs-tag { + background: #efefef; +} + +.hljs-section, +.hljs-name, +.hljs-literal, +.hljs-keyword, +.hljs-selector-tag, +.hljs-type, +.hljs-selector-id, +.hljs-selector-class { + font-weight: bold; + color: #000080; +} + +.hljs-attribute, +.hljs-number, +.hljs-regexp, +.hljs-link { + font-weight: bold; + color: #0000ff; +} + +.hljs-number, +.hljs-regexp, +.hljs-link { + font-weight: normal; +} + +.hljs-string { + color: #008000; + font-weight: bold; +} + +.hljs-symbol, +.hljs-bullet, +.hljs-formula { + color: #000; + background: #d0eded; + font-style: italic; +} + +.hljs-doctag { + text-decoration: underline; +} + +.hljs-variable, +.hljs-template-variable { + color: #660e7a; +} + +.hljs-addition { + background: #baeeba; +} + +.hljs-deletion { + background: #ffc8bd; +} + +.hljs-emphasis { + font-style: italic; +} + +.hljs-strong { + font-weight: bold; +} + +.hljs-ln-numbers { + display: block; + float: left; + width: 3em; + border-right: 1px solid #ccc; + font-style: normal; + text-align: right; + background-color: #eee; +} diff --git a/htmlReport/img/arrowDown.gif b/htmlReport/img/arrowDown.gif new file mode 100644 index 0000000..a4ac9b4 Binary files /dev/null and b/htmlReport/img/arrowDown.gif differ diff --git a/htmlReport/img/arrowUp.gif b/htmlReport/img/arrowUp.gif new file mode 100644 index 0000000..d488db0 Binary files /dev/null and b/htmlReport/img/arrowUp.gif differ diff --git a/htmlReport/index.html b/htmlReport/index.html new file mode 100644 index 0000000..47119f2 --- /dev/null +++ b/htmlReport/index.html @@ -0,0 +1,411 @@ + + + + + + Coverage Report > Summary + + + + + + +
+ + +

Overall Coverage Summary

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
all classes + + 100% + + + (33/33) + + + + 94.3% + + + (166/176) + + + + 86.7% + + + (386/445) + +
+ +
+

Coverage Breakdown

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+
+ + + + + + + diff --git a/htmlReport/index_SORT_BY_BLOCK.html b/htmlReport/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..77df528 --- /dev/null +++ b/htmlReport/index_SORT_BY_BLOCK.html @@ -0,0 +1,411 @@ + + + + + + Coverage Report > Summary + + + + + + +
+ + +

Overall Coverage Summary

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
all classes + + 100% + + + (33/33) + + + + 94.3% + + + (166/176) + + + + 86.7% + + + (386/445) + +
+ +
+

Coverage Breakdown

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+
+ + + + + + + diff --git a/htmlReport/index_SORT_BY_BLOCK_DESC.html b/htmlReport/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..c980563 --- /dev/null +++ b/htmlReport/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,411 @@ + + + + + + Coverage Report > Summary + + + + + + +
+ + +

Overall Coverage Summary

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
all classes + + 100% + + + (33/33) + + + + 94.3% + + + (166/176) + + + + 86.7% + + + (386/445) + +
+ +
+

Coverage Breakdown

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+
+ + + + + + + diff --git a/htmlReport/index_SORT_BY_CLASS.html b/htmlReport/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..70bd307 --- /dev/null +++ b/htmlReport/index_SORT_BY_CLASS.html @@ -0,0 +1,411 @@ + + + + + + Coverage Report > Summary + + + + + + +
+ + +

Overall Coverage Summary

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
all classes + + 100% + + + (33/33) + + + + 94.3% + + + (166/176) + + + + 86.7% + + + (386/445) + +
+ +
+

Coverage Breakdown

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+
+ + + + + + + diff --git a/htmlReport/index_SORT_BY_CLASS_DESC.html b/htmlReport/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..b22b6db --- /dev/null +++ b/htmlReport/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,411 @@ + + + + + + Coverage Report > Summary + + + + + + +
+ + +

Overall Coverage Summary

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
all classes + + 100% + + + (33/33) + + + + 94.3% + + + (166/176) + + + + 86.7% + + + (386/445) + +
+ +
+

Coverage Breakdown

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+
+ + + + + + + diff --git a/htmlReport/index_SORT_BY_LINE.html b/htmlReport/index_SORT_BY_LINE.html new file mode 100644 index 0000000..0e0c6ac --- /dev/null +++ b/htmlReport/index_SORT_BY_LINE.html @@ -0,0 +1,411 @@ + + + + + + Coverage Report > Summary + + + + + + +
+ + +

Overall Coverage Summary

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
all classes + + 100% + + + (33/33) + + + + 94.3% + + + (166/176) + + + + 86.7% + + + (386/445) + +
+ +
+

Coverage Breakdown

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+
+ + + + + + + diff --git a/htmlReport/index_SORT_BY_LINE_DESC.html b/htmlReport/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..aa90764 --- /dev/null +++ b/htmlReport/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,411 @@ + + + + + + Coverage Report > Summary + + + + + + +
+ + +

Overall Coverage Summary

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
all classes + + 100% + + + (33/33) + + + + 94.3% + + + (166/176) + + + + 86.7% + + + (386/445) + +
+ +
+

Coverage Breakdown

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+
+ + + + + + + diff --git a/htmlReport/index_SORT_BY_METHOD.html b/htmlReport/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..655426d --- /dev/null +++ b/htmlReport/index_SORT_BY_METHOD.html @@ -0,0 +1,411 @@ + + + + + + Coverage Report > Summary + + + + + + +
+ + +

Overall Coverage Summary

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
all classes + + 100% + + + (33/33) + + + + 94.3% + + + (166/176) + + + + 86.7% + + + (386/445) + +
+ +
+

Coverage Breakdown

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
+
+ + + + + + + diff --git a/htmlReport/index_SORT_BY_METHOD_DESC.html b/htmlReport/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..da39fef --- /dev/null +++ b/htmlReport/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,411 @@ + + + + + + Coverage Report > Summary + + + + + + +
+ + +

Overall Coverage Summary

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
all classes + + 100% + + + (33/33) + + + + 94.3% + + + (166/176) + + + + 86.7% + + + (386/445) + +
+ +
+

Coverage Breakdown

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
+
+ + + + + + + diff --git a/htmlReport/index_SORT_BY_NAME_DESC.html b/htmlReport/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..58ad9fb --- /dev/null +++ b/htmlReport/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,411 @@ + + + + + + Coverage Report > Summary + + + + + + +
+ + +

Overall Coverage Summary

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
all classes + + 100% + + + (33/33) + + + + 94.3% + + + (166/176) + + + + 86.7% + + + (386/445) + +
+ +
+

Coverage Breakdown

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+
+ + + + + + + diff --git a/htmlReport/js/highlight.min.js b/htmlReport/js/highlight.min.js new file mode 100644 index 0000000..e887315 --- /dev/null +++ b/htmlReport/js/highlight.min.js @@ -0,0 +1,1388 @@ +/* + Highlight.js 10.7.2 (00233d63) + License: BSD-3-Clause + Copyright (c) 2006-2021, Ivan Sagalaev + + BSD 3-Clause License + + Copyright (c) 2006-2021, Ivan Sagalaev. + All rights reserved. + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + * Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + + * Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + + * Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +*/ +var hljs=function(){"use strict";function e(t){ +return t instanceof Map?t.clear=t.delete=t.set=()=>{ +throw Error("map is read-only")}:t instanceof Set&&(t.add=t.clear=t.delete=()=>{ +throw Error("set is read-only") +}),Object.freeze(t),Object.getOwnPropertyNames(t).forEach((n=>{var i=t[n] +;"object"!=typeof i||Object.isFrozen(i)||e(i)})),t}var t=e,n=e;t.default=n +;class i{constructor(e){ +void 0===e.data&&(e.data={}),this.data=e.data,this.isMatchIgnored=!1} +ignoreMatch(){this.isMatchIgnored=!0}}function s(e){ +return e.replace(/&/g,"&").replace(//g,">").replace(/"/g,""").replace(/'/g,"'") +}function a(e,...t){const n=Object.create(null);for(const t in e)n[t]=e[t] +;return t.forEach((e=>{for(const t in e)n[t]=e[t]})),n}const r=e=>!!e.kind +;class l{constructor(e,t){ +this.buffer="",this.classPrefix=t.classPrefix,e.walk(this)}addText(e){ +this.buffer+=s(e)}openNode(e){if(!r(e))return;let t=e.kind +;e.sublanguage||(t=`${this.classPrefix}${t}`),this.span(t)}closeNode(e){ +r(e)&&(this.buffer+="")}value(){return this.buffer}span(e){ +this.buffer+=``}}class o{constructor(){this.rootNode={ +children:[]},this.stack=[this.rootNode]}get top(){ +return this.stack[this.stack.length-1]}get root(){return this.rootNode}add(e){ +this.top.children.push(e)}openNode(e){const t={kind:e,children:[]} +;this.add(t),this.stack.push(t)}closeNode(){ +if(this.stack.length>1)return this.stack.pop()}closeAllNodes(){ +for(;this.closeNode(););}toJSON(){return JSON.stringify(this.rootNode,null,4)} +walk(e){return this.constructor._walk(e,this.rootNode)}static _walk(e,t){ +return"string"==typeof t?e.addText(t):t.children&&(e.openNode(t), +t.children.forEach((t=>this._walk(e,t))),e.closeNode(t)),e}static _collapse(e){ +"string"!=typeof e&&e.children&&(e.children.every((e=>"string"==typeof e))?e.children=[e.children.join("")]:e.children.forEach((e=>{ +o._collapse(e)})))}}class c extends o{constructor(e){super(),this.options=e} +addKeyword(e,t){""!==e&&(this.openNode(t),this.addText(e),this.closeNode())} +addText(e){""!==e&&this.add(e)}addSublanguage(e,t){const n=e.root +;n.kind=t,n.sublanguage=!0,this.add(n)}toHTML(){ +return new l(this,this.options).value()}finalize(){return!0}}function g(e){ +return e?"string"==typeof e?e:e.source:null} +const u=/\[(?:[^\\\]]|\\.)*\]|\(\??|\\([1-9][0-9]*)|\\./,h="[a-zA-Z]\\w*",d="[a-zA-Z_]\\w*",f="\\b\\d+(\\.\\d+)?",p="(-?)(\\b0[xX][a-fA-F0-9]+|(\\b\\d+(\\.\\d*)?|\\.\\d+)([eE][-+]?\\d+)?)",m="\\b(0b[01]+)",b={ +begin:"\\\\[\\s\\S]",relevance:0},E={className:"string",begin:"'",end:"'", +illegal:"\\n",contains:[b]},x={className:"string",begin:'"',end:'"', +illegal:"\\n",contains:[b]},v={ +begin:/\b(a|an|the|are|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|they|like|more)\b/ +},w=(e,t,n={})=>{const i=a({className:"comment",begin:e,end:t,contains:[]},n) +;return i.contains.push(v),i.contains.push({className:"doctag", +begin:"(?:TODO|FIXME|NOTE|BUG|OPTIMIZE|HACK|XXX):",relevance:0}),i +},y=w("//","$"),N=w("/\\*","\\*/"),R=w("#","$");var _=Object.freeze({ +__proto__:null,MATCH_NOTHING_RE:/\b\B/,IDENT_RE:h,UNDERSCORE_IDENT_RE:d, +NUMBER_RE:f,C_NUMBER_RE:p,BINARY_NUMBER_RE:m, +RE_STARTERS_RE:"!|!=|!==|%|%=|&|&&|&=|\\*|\\*=|\\+|\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\?|\\[|\\{|\\(|\\^|\\^=|\\||\\|=|\\|\\||~", +SHEBANG:(e={})=>{const t=/^#![ ]*\// +;return e.binary&&(e.begin=((...e)=>e.map((e=>g(e))).join(""))(t,/.*\b/,e.binary,/\b.*/)), +a({className:"meta",begin:t,end:/$/,relevance:0,"on:begin":(e,t)=>{ +0!==e.index&&t.ignoreMatch()}},e)},BACKSLASH_ESCAPE:b,APOS_STRING_MODE:E, +QUOTE_STRING_MODE:x,PHRASAL_WORDS_MODE:v,COMMENT:w,C_LINE_COMMENT_MODE:y, +C_BLOCK_COMMENT_MODE:N,HASH_COMMENT_MODE:R,NUMBER_MODE:{className:"number", +begin:f,relevance:0},C_NUMBER_MODE:{className:"number",begin:p,relevance:0}, +BINARY_NUMBER_MODE:{className:"number",begin:m,relevance:0},CSS_NUMBER_MODE:{ +className:"number", +begin:f+"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?", +relevance:0},REGEXP_MODE:{begin:/(?=\/[^/\n]*\/)/,contains:[{className:"regexp", +begin:/\//,end:/\/[gimuy]*/,illegal:/\n/,contains:[b,{begin:/\[/,end:/\]/, +relevance:0,contains:[b]}]}]},TITLE_MODE:{className:"title",begin:h,relevance:0 +},UNDERSCORE_TITLE_MODE:{className:"title",begin:d,relevance:0},METHOD_GUARD:{ +begin:"\\.\\s*[a-zA-Z_]\\w*",relevance:0},END_SAME_AS_BEGIN:e=>Object.assign(e,{ +"on:begin":(e,t)=>{t.data._beginMatch=e[1]},"on:end":(e,t)=>{ +t.data._beginMatch!==e[1]&&t.ignoreMatch()}})});function k(e,t){ +"."===e.input[e.index-1]&&t.ignoreMatch()}function M(e,t){ +t&&e.beginKeywords&&(e.begin="\\b("+e.beginKeywords.split(" ").join("|")+")(?!\\.)(?=\\b|\\s)", +e.__beforeBegin=k,e.keywords=e.keywords||e.beginKeywords,delete e.beginKeywords, +void 0===e.relevance&&(e.relevance=0))}function O(e,t){ +Array.isArray(e.illegal)&&(e.illegal=((...e)=>"("+e.map((e=>g(e))).join("|")+")")(...e.illegal)) +}function A(e,t){if(e.match){ +if(e.begin||e.end)throw Error("begin & end are not supported with match") +;e.begin=e.match,delete e.match}}function L(e,t){ +void 0===e.relevance&&(e.relevance=1)} +const I=["of","and","for","in","not","or","if","then","parent","list","value"] +;function j(e,t,n="keyword"){const i={} +;return"string"==typeof e?s(n,e.split(" ")):Array.isArray(e)?s(n,e):Object.keys(e).forEach((n=>{ +Object.assign(i,j(e[n],t,n))})),i;function s(e,n){ +t&&(n=n.map((e=>e.toLowerCase()))),n.forEach((t=>{const n=t.split("|") +;i[n[0]]=[e,B(n[0],n[1])]}))}}function B(e,t){ +return t?Number(t):(e=>I.includes(e.toLowerCase()))(e)?0:1} +function T(e,{plugins:t}){function n(t,n){ +return RegExp(g(t),"m"+(e.case_insensitive?"i":"")+(n?"g":""))}class i{ +constructor(){ +this.matchIndexes={},this.regexes=[],this.matchAt=1,this.position=0} +addRule(e,t){ +t.position=this.position++,this.matchIndexes[this.matchAt]=t,this.regexes.push([t,e]), +this.matchAt+=(e=>RegExp(e.toString()+"|").exec("").length-1)(e)+1}compile(){ +0===this.regexes.length&&(this.exec=()=>null) +;const e=this.regexes.map((e=>e[1]));this.matcherRe=n(((e,t="|")=>{let n=0 +;return e.map((e=>{n+=1;const t=n;let i=g(e),s="";for(;i.length>0;){ +const e=u.exec(i);if(!e){s+=i;break} +s+=i.substring(0,e.index),i=i.substring(e.index+e[0].length), +"\\"===e[0][0]&&e[1]?s+="\\"+(Number(e[1])+t):(s+=e[0],"("===e[0]&&n++)}return s +})).map((e=>`(${e})`)).join(t)})(e),!0),this.lastIndex=0}exec(e){ +this.matcherRe.lastIndex=this.lastIndex;const t=this.matcherRe.exec(e) +;if(!t)return null +;const n=t.findIndex(((e,t)=>t>0&&void 0!==e)),i=this.matchIndexes[n] +;return t.splice(0,n),Object.assign(t,i)}}class s{constructor(){ +this.rules=[],this.multiRegexes=[], +this.count=0,this.lastIndex=0,this.regexIndex=0}getMatcher(e){ +if(this.multiRegexes[e])return this.multiRegexes[e];const t=new i +;return this.rules.slice(e).forEach((([e,n])=>t.addRule(e,n))), +t.compile(),this.multiRegexes[e]=t,t}resumingScanAtSamePosition(){ +return 0!==this.regexIndex}considerAll(){this.regexIndex=0}addRule(e,t){ +this.rules.push([e,t]),"begin"===t.type&&this.count++}exec(e){ +const t=this.getMatcher(this.regexIndex);t.lastIndex=this.lastIndex +;let n=t.exec(e) +;if(this.resumingScanAtSamePosition())if(n&&n.index===this.lastIndex);else{ +const t=this.getMatcher(0);t.lastIndex=this.lastIndex+1,n=t.exec(e)} +return n&&(this.regexIndex+=n.position+1, +this.regexIndex===this.count&&this.considerAll()),n}} +if(e.compilerExtensions||(e.compilerExtensions=[]), +e.contains&&e.contains.includes("self"))throw Error("ERR: contains `self` is not supported at the top-level of a language. See documentation.") +;return e.classNameAliases=a(e.classNameAliases||{}),function t(i,r){const l=i +;if(i.isCompiled)return l +;[A].forEach((e=>e(i,r))),e.compilerExtensions.forEach((e=>e(i,r))), +i.__beforeBegin=null,[M,O,L].forEach((e=>e(i,r))),i.isCompiled=!0;let o=null +;if("object"==typeof i.keywords&&(o=i.keywords.$pattern, +delete i.keywords.$pattern), +i.keywords&&(i.keywords=j(i.keywords,e.case_insensitive)), +i.lexemes&&o)throw Error("ERR: Prefer `keywords.$pattern` to `mode.lexemes`, BOTH are not allowed. (see mode reference) ") +;return o=o||i.lexemes||/\w+/, +l.keywordPatternRe=n(o,!0),r&&(i.begin||(i.begin=/\B|\b/), +l.beginRe=n(i.begin),i.endSameAsBegin&&(i.end=i.begin), +i.end||i.endsWithParent||(i.end=/\B|\b/), +i.end&&(l.endRe=n(i.end)),l.terminatorEnd=g(i.end)||"", +i.endsWithParent&&r.terminatorEnd&&(l.terminatorEnd+=(i.end?"|":"")+r.terminatorEnd)), +i.illegal&&(l.illegalRe=n(i.illegal)), +i.contains||(i.contains=[]),i.contains=[].concat(...i.contains.map((e=>(e=>(e.variants&&!e.cachedVariants&&(e.cachedVariants=e.variants.map((t=>a(e,{ +variants:null},t)))),e.cachedVariants?e.cachedVariants:S(e)?a(e,{ +starts:e.starts?a(e.starts):null +}):Object.isFrozen(e)?a(e):e))("self"===e?i:e)))),i.contains.forEach((e=>{t(e,l) +})),i.starts&&t(i.starts,r),l.matcher=(e=>{const t=new s +;return e.contains.forEach((e=>t.addRule(e.begin,{rule:e,type:"begin" +}))),e.terminatorEnd&&t.addRule(e.terminatorEnd,{type:"end" +}),e.illegal&&t.addRule(e.illegal,{type:"illegal"}),t})(l),l}(e)}function S(e){ +return!!e&&(e.endsWithParent||S(e.starts))}function P(e){const t={ +props:["language","code","autodetect"],data:()=>({detectedLanguage:"", +unknownLanguage:!1}),computed:{className(){ +return this.unknownLanguage?"":"hljs "+this.detectedLanguage},highlighted(){ +if(!this.autoDetect&&!e.getLanguage(this.language))return console.warn(`The language "${this.language}" you specified could not be found.`), +this.unknownLanguage=!0,s(this.code);let t={} +;return this.autoDetect?(t=e.highlightAuto(this.code), +this.detectedLanguage=t.language):(t=e.highlight(this.language,this.code,this.ignoreIllegals), +this.detectedLanguage=this.language),t.value},autoDetect(){ +return!(this.language&&(e=this.autodetect,!e&&""!==e));var e}, +ignoreIllegals:()=>!0},render(e){return e("pre",{},[e("code",{ +class:this.className,domProps:{innerHTML:this.highlighted}})])}};return{ +Component:t,VuePlugin:{install(e){e.component("highlightjs",t)}}}}const D={ +"after:highlightElement":({el:e,result:t,text:n})=>{const i=H(e) +;if(!i.length)return;const a=document.createElement("div") +;a.innerHTML=t.value,t.value=((e,t,n)=>{let i=0,a="";const r=[];function l(){ +return e.length&&t.length?e[0].offset!==t[0].offset?e[0].offset"}function c(e){ +a+=""}function g(e){("start"===e.event?o:c)(e.node)} +for(;e.length||t.length;){let t=l() +;if(a+=s(n.substring(i,t[0].offset)),i=t[0].offset,t===e){r.reverse().forEach(c) +;do{g(t.splice(0,1)[0]),t=l()}while(t===e&&t.length&&t[0].offset===i) +;r.reverse().forEach(o) +}else"start"===t[0].event?r.push(t[0].node):r.pop(),g(t.splice(0,1)[0])} +return a+s(n.substr(i))})(i,H(a),n)}};function C(e){ +return e.nodeName.toLowerCase()}function H(e){const t=[];return function e(n,i){ +for(let s=n.firstChild;s;s=s.nextSibling)3===s.nodeType?i+=s.nodeValue.length:1===s.nodeType&&(t.push({ +event:"start",offset:i,node:s}),i=e(s,i),C(s).match(/br|hr|img|input/)||t.push({ +event:"stop",offset:i,node:s}));return i}(e,0),t}const $={},U=e=>{ +console.error(e)},z=(e,...t)=>{console.log("WARN: "+e,...t)},K=(e,t)=>{ +$[`${e}/${t}`]||(console.log(`Deprecated as of ${e}. ${t}`),$[`${e}/${t}`]=!0) +},G=s,V=a,W=Symbol("nomatch");return(e=>{ +const n=Object.create(null),s=Object.create(null),a=[];let r=!0 +;const l=/(^(<[^>]+>|\t|)+|\n)/gm,o="Could not find the language '{}', did you forget to load/include a language module?",g={ +disableAutodetect:!0,name:"Plain text",contains:[]};let u={ +noHighlightRe:/^(no-?highlight)$/i, +languageDetectRe:/\blang(?:uage)?-([\w-]+)\b/i,classPrefix:"hljs-", +tabReplace:null,useBR:!1,languages:null,__emitter:c};function h(e){ +return u.noHighlightRe.test(e)}function d(e,t,n,i){let s="",a="" +;"object"==typeof t?(s=e, +n=t.ignoreIllegals,a=t.language,i=void 0):(K("10.7.0","highlight(lang, code, ...args) has been deprecated."), +K("10.7.0","Please use highlight(code, options) instead.\nhttps://github.com/highlightjs/highlight.js/issues/2277"), +a=e,s=t);const r={code:s,language:a};M("before:highlight",r) +;const l=r.result?r.result:f(r.language,r.code,n,i) +;return l.code=r.code,M("after:highlight",l),l}function f(e,t,s,l){ +function c(e,t){const n=v.case_insensitive?t[0].toLowerCase():t[0] +;return Object.prototype.hasOwnProperty.call(e.keywords,n)&&e.keywords[n]} +function g(){null!=R.subLanguage?(()=>{if(""===M)return;let e=null +;if("string"==typeof R.subLanguage){ +if(!n[R.subLanguage])return void k.addText(M) +;e=f(R.subLanguage,M,!0,_[R.subLanguage]),_[R.subLanguage]=e.top +}else e=p(M,R.subLanguage.length?R.subLanguage:null) +;R.relevance>0&&(O+=e.relevance),k.addSublanguage(e.emitter,e.language) +})():(()=>{if(!R.keywords)return void k.addText(M);let e=0 +;R.keywordPatternRe.lastIndex=0;let t=R.keywordPatternRe.exec(M),n="";for(;t;){ +n+=M.substring(e,t.index);const i=c(R,t);if(i){const[e,s]=i +;if(k.addText(n),n="",O+=s,e.startsWith("_"))n+=t[0];else{ +const n=v.classNameAliases[e]||e;k.addKeyword(t[0],n)}}else n+=t[0] +;e=R.keywordPatternRe.lastIndex,t=R.keywordPatternRe.exec(M)} +n+=M.substr(e),k.addText(n)})(),M=""}function h(e){ +return e.className&&k.openNode(v.classNameAliases[e.className]||e.className), +R=Object.create(e,{parent:{value:R}}),R}function d(e,t,n){let s=((e,t)=>{ +const n=e&&e.exec(t);return n&&0===n.index})(e.endRe,n);if(s){if(e["on:end"]){ +const n=new i(e);e["on:end"](t,n),n.isMatchIgnored&&(s=!1)}if(s){ +for(;e.endsParent&&e.parent;)e=e.parent;return e}} +if(e.endsWithParent)return d(e.parent,t,n)}function m(e){ +return 0===R.matcher.regexIndex?(M+=e[0],1):(I=!0,0)}function b(e){ +const n=e[0],i=t.substr(e.index),s=d(R,e,i);if(!s)return W;const a=R +;a.skip?M+=n:(a.returnEnd||a.excludeEnd||(M+=n),g(),a.excludeEnd&&(M=n));do{ +R.className&&k.closeNode(),R.skip||R.subLanguage||(O+=R.relevance),R=R.parent +}while(R!==s.parent) +;return s.starts&&(s.endSameAsBegin&&(s.starts.endRe=s.endRe), +h(s.starts)),a.returnEnd?0:n.length}let E={};function x(n,a){const l=a&&a[0] +;if(M+=n,null==l)return g(),0 +;if("begin"===E.type&&"end"===a.type&&E.index===a.index&&""===l){ +if(M+=t.slice(a.index,a.index+1),!r){const t=Error("0 width match regex") +;throw t.languageName=e,t.badRule=E.rule,t}return 1} +if(E=a,"begin"===a.type)return function(e){ +const t=e[0],n=e.rule,s=new i(n),a=[n.__beforeBegin,n["on:begin"]] +;for(const n of a)if(n&&(n(e,s),s.isMatchIgnored))return m(t) +;return n&&n.endSameAsBegin&&(n.endRe=RegExp(t.replace(/[-/\\^$*+?.()|[\]{}]/g,"\\$&"),"m")), +n.skip?M+=t:(n.excludeBegin&&(M+=t), +g(),n.returnBegin||n.excludeBegin||(M=t)),h(n),n.returnBegin?0:t.length}(a) +;if("illegal"===a.type&&!s){ +const e=Error('Illegal lexeme "'+l+'" for mode "'+(R.className||"")+'"') +;throw e.mode=R,e}if("end"===a.type){const e=b(a);if(e!==W)return e} +if("illegal"===a.type&&""===l)return 1 +;if(L>1e5&&L>3*a.index)throw Error("potential infinite loop, way more iterations than matches") +;return M+=l,l.length}const v=N(e) +;if(!v)throw U(o.replace("{}",e)),Error('Unknown language: "'+e+'"') +;const w=T(v,{plugins:a});let y="",R=l||w;const _={},k=new u.__emitter(u);(()=>{ +const e=[];for(let t=R;t!==v;t=t.parent)t.className&&e.unshift(t.className) +;e.forEach((e=>k.openNode(e)))})();let M="",O=0,A=0,L=0,I=!1;try{ +for(R.matcher.considerAll();;){ +L++,I?I=!1:R.matcher.considerAll(),R.matcher.lastIndex=A +;const e=R.matcher.exec(t);if(!e)break;const n=x(t.substring(A,e.index),e) +;A=e.index+n}return x(t.substr(A)),k.closeAllNodes(),k.finalize(),y=k.toHTML(),{ +relevance:Math.floor(O),value:y,language:e,illegal:!1,emitter:k,top:R}}catch(n){ +if(n.message&&n.message.includes("Illegal"))return{illegal:!0,illegalBy:{ +msg:n.message,context:t.slice(A-100,A+100),mode:n.mode},sofar:y,relevance:0, +value:G(t),emitter:k};if(r)return{illegal:!1,relevance:0,value:G(t),emitter:k, +language:e,top:R,errorRaised:n};throw n}}function p(e,t){ +t=t||u.languages||Object.keys(n);const i=(e=>{const t={relevance:0, +emitter:new u.__emitter(u),value:G(e),illegal:!1,top:g} +;return t.emitter.addText(e),t})(e),s=t.filter(N).filter(k).map((t=>f(t,e,!1))) +;s.unshift(i);const a=s.sort(((e,t)=>{ +if(e.relevance!==t.relevance)return t.relevance-e.relevance +;if(e.language&&t.language){if(N(e.language).supersetOf===t.language)return 1 +;if(N(t.language).supersetOf===e.language)return-1}return 0})),[r,l]=a,o=r +;return o.second_best=l,o}const m={"before:highlightElement":({el:e})=>{ +u.useBR&&(e.innerHTML=e.innerHTML.replace(/\n/g,"").replace(//g,"\n")) +},"after:highlightElement":({result:e})=>{ +u.useBR&&(e.value=e.value.replace(/\n/g,"
"))}},b=/^(<[^>]+>|\t)+/gm,E={ +"after:highlightElement":({result:e})=>{ +u.tabReplace&&(e.value=e.value.replace(b,(e=>e.replace(/\t/g,u.tabReplace))))}} +;function x(e){let t=null;const n=(e=>{let t=e.className+" " +;t+=e.parentNode?e.parentNode.className:"";const n=u.languageDetectRe.exec(t) +;if(n){const t=N(n[1]) +;return t||(z(o.replace("{}",n[1])),z("Falling back to no-highlight mode for this block.",e)), +t?n[1]:"no-highlight"}return t.split(/\s+/).find((e=>h(e)||N(e)))})(e) +;if(h(n))return;M("before:highlightElement",{el:e,language:n}),t=e +;const i=t.textContent,a=n?d(i,{language:n,ignoreIllegals:!0}):p(i) +;M("after:highlightElement",{el:e,result:a,text:i +}),e.innerHTML=a.value,((e,t,n)=>{const i=t?s[t]:n +;e.classList.add("hljs"),i&&e.classList.add(i)})(e,n,a.language),e.result={ +language:a.language,re:a.relevance,relavance:a.relevance +},a.second_best&&(e.second_best={language:a.second_best.language, +re:a.second_best.relevance,relavance:a.second_best.relevance})}const v=()=>{ +v.called||(v.called=!0, +K("10.6.0","initHighlighting() is deprecated. Use highlightAll() instead."), +document.querySelectorAll("pre code").forEach(x))};let w=!1;function y(){ +"loading"!==document.readyState?document.querySelectorAll("pre code").forEach(x):w=!0 +}function N(e){return e=(e||"").toLowerCase(),n[e]||n[s[e]]} +function R(e,{languageName:t}){"string"==typeof e&&(e=[e]),e.forEach((e=>{ +s[e.toLowerCase()]=t}))}function k(e){const t=N(e) +;return t&&!t.disableAutodetect}function M(e,t){const n=e;a.forEach((e=>{ +e[n]&&e[n](t)}))} +"undefined"!=typeof window&&window.addEventListener&&window.addEventListener("DOMContentLoaded",(()=>{ +w&&y()}),!1),Object.assign(e,{highlight:d,highlightAuto:p,highlightAll:y, +fixMarkup:e=>{ +return K("10.2.0","fixMarkup will be removed entirely in v11.0"),K("10.2.0","Please see https://github.com/highlightjs/highlight.js/issues/2534"), +t=e, +u.tabReplace||u.useBR?t.replace(l,(e=>"\n"===e?u.useBR?"
":e:u.tabReplace?e.replace(/\t/g,u.tabReplace):e)):t +;var t},highlightElement:x, +highlightBlock:e=>(K("10.7.0","highlightBlock will be removed entirely in v12.0"), +K("10.7.0","Please use highlightElement now."),x(e)),configure:e=>{ +e.useBR&&(K("10.3.0","'useBR' will be removed entirely in v11.0"), +K("10.3.0","Please see https://github.com/highlightjs/highlight.js/issues/2559")), +u=V(u,e)},initHighlighting:v,initHighlightingOnLoad:()=>{ +K("10.6.0","initHighlightingOnLoad() is deprecated. Use highlightAll() instead."), +w=!0},registerLanguage:(t,i)=>{let s=null;try{s=i(e)}catch(e){ +if(U("Language definition for '{}' could not be registered.".replace("{}",t)), +!r)throw e;U(e),s=g} +s.name||(s.name=t),n[t]=s,s.rawDefinition=i.bind(null,e),s.aliases&&R(s.aliases,{ +languageName:t})},unregisterLanguage:e=>{delete n[e] +;for(const t of Object.keys(s))s[t]===e&&delete s[t]}, +listLanguages:()=>Object.keys(n),getLanguage:N,registerAliases:R, +requireLanguage:e=>{ +K("10.4.0","requireLanguage will be removed entirely in v11."), +K("10.4.0","Please see https://github.com/highlightjs/highlight.js/pull/2844") +;const t=N(e);if(t)return t +;throw Error("The '{}' language is required, but not loaded.".replace("{}",e))}, +autoDetection:k,inherit:V,addPlugin:e=>{(e=>{ +e["before:highlightBlock"]&&!e["before:highlightElement"]&&(e["before:highlightElement"]=t=>{ +e["before:highlightBlock"](Object.assign({block:t.el},t)) +}),e["after:highlightBlock"]&&!e["after:highlightElement"]&&(e["after:highlightElement"]=t=>{ +e["after:highlightBlock"](Object.assign({block:t.el},t))})})(e),a.push(e)}, +vuePlugin:P(e).VuePlugin}),e.debugMode=()=>{r=!1},e.safeMode=()=>{r=!0 +},e.versionString="10.7.2";for(const e in _)"object"==typeof _[e]&&t(_[e]) +;return Object.assign(e,_),e.addPlugin(m),e.addPlugin(D),e.addPlugin(E),e})({}) +}();"object"==typeof exports&&"undefined"!=typeof module&&(module.exports=hljs); +hljs.registerLanguage("apache",(()=>{"use strict";return e=>{const n={ +className:"number",begin:/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(:\d{1,5})?/} +;return{name:"Apache config",aliases:["apacheconf"],case_insensitive:!0, +contains:[e.HASH_COMMENT_MODE,{className:"section",begin:/<\/?/,end:/>/, +contains:[n,{className:"number",begin:/:\d{1,5}/ +},e.inherit(e.QUOTE_STRING_MODE,{relevance:0})]},{className:"attribute", +begin:/\w+/,relevance:0,keywords:{ +nomarkup:"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername" +},starts:{end:/$/,relevance:0,keywords:{literal:"on off all deny allow"}, +contains:[{className:"meta",begin:/\s\[/,end:/\]$/},{className:"variable", +begin:/[\$%]\{/,end:/\}/,contains:["self",{className:"number",begin:/[$%]\d+/}] +},n,{className:"number",begin:/\d+/},e.QUOTE_STRING_MODE]}}],illegal:/\S/}} +})()); +hljs.registerLanguage("bash",(()=>{"use strict";function e(...e){ +return e.map((e=>{return(s=e)?"string"==typeof s?s:s.source:null;var s +})).join("")}return s=>{const n={},t={begin:/\$\{/,end:/\}/,contains:["self",{ +begin:/:-/,contains:[n]}]};Object.assign(n,{className:"variable",variants:[{ +begin:e(/\$[\w\d#@][\w\d_]*/,"(?![\\w\\d])(?![$])")},t]});const a={ +className:"subst",begin:/\$\(/,end:/\)/,contains:[s.BACKSLASH_ESCAPE]},i={ +begin:/<<-?\s*(?=\w+)/,starts:{contains:[s.END_SAME_AS_BEGIN({begin:/(\w+)/, +end:/(\w+)/,className:"string"})]}},c={className:"string",begin:/"/,end:/"/, +contains:[s.BACKSLASH_ESCAPE,n,a]};a.contains.push(c);const o={begin:/\$\(\(/, +end:/\)\)/,contains:[{begin:/\d+#[0-9a-f]+/,className:"number"},s.NUMBER_MODE,n] +},r=s.SHEBANG({binary:"(fish|bash|zsh|sh|csh|ksh|tcsh|dash|scsh)",relevance:10 +}),l={className:"function",begin:/\w[\w\d_]*\s*\(\s*\)\s*\{/,returnBegin:!0, +contains:[s.inherit(s.TITLE_MODE,{begin:/\w[\w\d_]*/})],relevance:0};return{ +name:"Bash",aliases:["sh","zsh"],keywords:{$pattern:/\b[a-z._-]+\b/, +keyword:"if then else elif fi for while in do done case esac function", +literal:"true false", +built_in:"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp" +},contains:[r,s.SHEBANG(),l,o,s.HASH_COMMENT_MODE,i,c,{className:"",begin:/\\"/ +},{className:"string",begin:/'/,end:/'/},n]}}})()); +hljs.registerLanguage("c",(()=>{"use strict";function e(e){ +return((...e)=>e.map((e=>(e=>e?"string"==typeof e?e:e.source:null)(e))).join(""))("(",e,")?") +}return t=>{const n=t.COMMENT("//","$",{contains:[{begin:/\\\n/}] +}),r="[a-zA-Z_]\\w*::",a="(decltype\\(auto\\)|"+e(r)+"[a-zA-Z_]\\w*"+e("<[^<>]+>")+")",i={ +className:"keyword",begin:"\\b[a-z\\d_]*_t\\b"},s={className:"string", +variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n", +contains:[t.BACKSLASH_ESCAPE]},{ +begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)", +end:"'",illegal:"."},t.END_SAME_AS_BEGIN({ +begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},o={ +className:"number",variants:[{begin:"\\b(0b[01']+)"},{ +begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)" +},{ +begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)" +}],relevance:0},c={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{ +"meta-keyword":"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include" +},contains:[{begin:/\\\n/,relevance:0},t.inherit(s,{className:"meta-string"}),{ +className:"meta-string",begin:/<.*?>/},n,t.C_BLOCK_COMMENT_MODE]},l={ +className:"title",begin:e(r)+t.IDENT_RE,relevance:0 +},d=e(r)+t.IDENT_RE+"\\s*\\(",u={ +keyword:"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq", +built_in:"std string wstring cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set pair bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap priority_queue make_pair array shared_ptr abort terminate abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf future isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf endl initializer_list unique_ptr _Bool complex _Complex imaginary _Imaginary", +literal:"true false nullptr NULL"},m=[c,i,n,t.C_BLOCK_COMMENT_MODE,o,s],p={ +variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{ +beginKeywords:"new throw return else",end:/;/}],keywords:u,contains:m.concat([{ +begin:/\(/,end:/\)/,keywords:u,contains:m.concat(["self"]),relevance:0}]), +relevance:0},_={className:"function",begin:"("+a+"[\\*&\\s]+)+"+d, +returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:u,illegal:/[^\w\s\*&:<>.]/, +contains:[{begin:"decltype\\(auto\\)",keywords:u,relevance:0},{begin:d, +returnBegin:!0,contains:[l],relevance:0},{className:"params",begin:/\(/, +end:/\)/,keywords:u,relevance:0,contains:[n,t.C_BLOCK_COMMENT_MODE,s,o,i,{ +begin:/\(/,end:/\)/,keywords:u,relevance:0, +contains:["self",n,t.C_BLOCK_COMMENT_MODE,s,o,i]}] +},i,n,t.C_BLOCK_COMMENT_MODE,c]};return{name:"C",aliases:["h"],keywords:u, +disableAutodetect:!0,illegal:"",keywords:u,contains:["self",i]},{begin:t.IDENT_RE+"::",keywords:u},{ +className:"class",beginKeywords:"enum class struct union",end:/[{;:<>=]/, +contains:[{beginKeywords:"final class struct"},t.TITLE_MODE]}]),exports:{ +preprocessor:c,strings:s,keywords:u}}}})()); +hljs.registerLanguage("coffeescript",(()=>{"use strict" +;const e=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],n=["true","false","null","undefined","NaN","Infinity"],a=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer","BigInt64Array","BigUint64Array","BigInt"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]) +;return r=>{const t={ +keyword:e.concat(["then","unless","until","loop","by","when","and","or","is","isnt","not"]).filter((i=["var","const","let","function","static"], +e=>!i.includes(e))),literal:n.concat(["yes","no","on","off"]), +built_in:a.concat(["npm","print"])};var i;const s="[A-Za-z$_][0-9A-Za-z$_]*",o={ +className:"subst",begin:/#\{/,end:/\}/,keywords:t +},c=[r.BINARY_NUMBER_MODE,r.inherit(r.C_NUMBER_MODE,{starts:{end:"(\\s*/)?", +relevance:0}}),{className:"string",variants:[{begin:/'''/,end:/'''/, +contains:[r.BACKSLASH_ESCAPE]},{begin:/'/,end:/'/,contains:[r.BACKSLASH_ESCAPE] +},{begin:/"""/,end:/"""/,contains:[r.BACKSLASH_ESCAPE,o]},{begin:/"/,end:/"/, +contains:[r.BACKSLASH_ESCAPE,o]}]},{className:"regexp",variants:[{begin:"///", +end:"///",contains:[o,r.HASH_COMMENT_MODE]},{begin:"//[gim]{0,3}(?=\\W)", +relevance:0},{begin:/\/(?![ *]).*?(?![\\]).\/[gim]{0,3}(?=\W)/}]},{begin:"@"+s +},{subLanguage:"javascript",excludeBegin:!0,excludeEnd:!0,variants:[{ +begin:"```",end:"```"},{begin:"`",end:"`"}]}];o.contains=c +;const l=r.inherit(r.TITLE_MODE,{begin:s}),d="(\\(.*\\)\\s*)?\\B[-=]>",g={ +className:"params",begin:"\\([^\\(]",returnBegin:!0,contains:[{begin:/\(/, +end:/\)/,keywords:t,contains:["self"].concat(c)}]};return{name:"CoffeeScript", +aliases:["coffee","cson","iced"],keywords:t,illegal:/\/\*/, +contains:c.concat([r.COMMENT("###","###"),r.HASH_COMMENT_MODE,{ +className:"function",begin:"^\\s*"+s+"\\s*=\\s*"+d,end:"[-=]>",returnBegin:!0, +contains:[l,g]},{begin:/[:\(,=]\s*/,relevance:0,contains:[{className:"function", +begin:d,end:"[-=]>",returnBegin:!0,contains:[g]}]},{className:"class", +beginKeywords:"class",end:"$",illegal:/[:="\[\]]/,contains:[{ +beginKeywords:"extends",endsWithParent:!0,illegal:/[:="\[\]]/,contains:[l]},l] +},{begin:s+":",end:":",returnBegin:!0,returnEnd:!0,relevance:0}])}}})()); +hljs.registerLanguage("cpp",(()=>{"use strict";function e(e){ +return t("(",e,")?")}function t(...e){return e.map((e=>{ +return(t=e)?"string"==typeof t?t:t.source:null;var t})).join("")}return n=>{ +const r=n.COMMENT("//","$",{contains:[{begin:/\\\n/}] +}),a="[a-zA-Z_]\\w*::",i="(decltype\\(auto\\)|"+e(a)+"[a-zA-Z_]\\w*"+e("<[^<>]+>")+")",s={ +className:"keyword",begin:"\\b[a-z\\d_]*_t\\b"},c={className:"string", +variants:[{begin:'(u8?|U|L)?"',end:'"',illegal:"\\n", +contains:[n.BACKSLASH_ESCAPE]},{ +begin:"(u8?|U|L)?'(\\\\(x[0-9A-Fa-f]{2}|u[0-9A-Fa-f]{4,8}|[0-7]{3}|\\S)|.)", +end:"'",illegal:"."},n.END_SAME_AS_BEGIN({ +begin:/(?:u8?|U|L)?R"([^()\\ ]{0,16})\(/,end:/\)([^()\\ ]{0,16})"/})]},o={ +className:"number",variants:[{begin:"\\b(0b[01']+)"},{ +begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)((ll|LL|l|L)(u|U)?|(u|U)(ll|LL|l|L)?|f|F|b|B)" +},{ +begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)" +}],relevance:0},l={className:"meta",begin:/#\s*[a-z]+\b/,end:/$/,keywords:{ +"meta-keyword":"if else elif endif define undef warning error line pragma _Pragma ifdef ifndef include" +},contains:[{begin:/\\\n/,relevance:0},n.inherit(c,{className:"meta-string"}),{ +className:"meta-string",begin:/<.*?>/},r,n.C_BLOCK_COMMENT_MODE]},d={ +className:"title",begin:e(a)+n.IDENT_RE,relevance:0 +},u=e(a)+n.IDENT_RE+"\\s*\\(",m={ +keyword:"int float while private char char8_t char16_t char32_t catch import module export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using asm case typeid wchar_t short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignas alignof constexpr consteval constinit decltype concept co_await co_return co_yield requires noexcept static_assert thread_local restrict final override atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong new throw return and and_eq bitand bitor compl not not_eq or or_eq xor xor_eq", +built_in:"_Bool _Complex _Imaginary", +_relevance_hints:["asin","atan2","atan","calloc","ceil","cosh","cos","exit","exp","fabs","floor","fmod","fprintf","fputs","free","frexp","auto_ptr","deque","list","queue","stack","vector","map","set","pair","bitset","multiset","multimap","unordered_set","fscanf","future","isalnum","isalpha","iscntrl","isdigit","isgraph","islower","isprint","ispunct","isspace","isupper","isxdigit","tolower","toupper","labs","ldexp","log10","log","malloc","realloc","memchr","memcmp","memcpy","memset","modf","pow","printf","putchar","puts","scanf","sinh","sin","snprintf","sprintf","sqrt","sscanf","strcat","strchr","strcmp","strcpy","strcspn","strlen","strncat","strncmp","strncpy","strpbrk","strrchr","strspn","strstr","tanh","tan","unordered_map","unordered_multiset","unordered_multimap","priority_queue","make_pair","array","shared_ptr","abort","terminate","abs","acos","vfprintf","vprintf","vsprintf","endl","initializer_list","unique_ptr","complex","imaginary","std","string","wstring","cin","cout","cerr","clog","stdin","stdout","stderr","stringstream","istringstream","ostringstream"], +literal:"true false nullptr NULL"},p={className:"function.dispatch",relevance:0, +keywords:m, +begin:t(/\b/,/(?!decltype)/,/(?!if)/,/(?!for)/,/(?!while)/,n.IDENT_RE,(_=/\s*\(/, +t("(?=",_,")")))};var _;const g=[p,l,s,r,n.C_BLOCK_COMMENT_MODE,o,c],b={ +variants:[{begin:/=/,end:/;/},{begin:/\(/,end:/\)/},{ +beginKeywords:"new throw return else",end:/;/}],keywords:m,contains:g.concat([{ +begin:/\(/,end:/\)/,keywords:m,contains:g.concat(["self"]),relevance:0}]), +relevance:0},f={className:"function",begin:"("+i+"[\\*&\\s]+)+"+u, +returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:m,illegal:/[^\w\s\*&:<>.]/, +contains:[{begin:"decltype\\(auto\\)",keywords:m,relevance:0},{begin:u, +returnBegin:!0,contains:[d],relevance:0},{begin:/::/,relevance:0},{begin:/:/, +endsWithParent:!0,contains:[c,o]},{className:"params",begin:/\(/,end:/\)/, +keywords:m,relevance:0,contains:[r,n.C_BLOCK_COMMENT_MODE,c,o,s,{begin:/\(/, +end:/\)/,keywords:m,relevance:0,contains:["self",r,n.C_BLOCK_COMMENT_MODE,c,o,s] +}]},s,r,n.C_BLOCK_COMMENT_MODE,l]};return{name:"C++", +aliases:["cc","c++","h++","hpp","hh","hxx","cxx"],keywords:m,illegal:"",keywords:m,contains:["self",s]},{begin:n.IDENT_RE+"::",keywords:m},{ +className:"class",beginKeywords:"enum class struct union",end:/[{;:<>=]/, +contains:[{beginKeywords:"final class struct"},n.TITLE_MODE]}]),exports:{ +preprocessor:l,strings:c,keywords:m}}}})()); +hljs.registerLanguage("csharp",(()=>{"use strict";return e=>{const n={ +keyword:["abstract","as","base","break","case","class","const","continue","do","else","event","explicit","extern","finally","fixed","for","foreach","goto","if","implicit","in","interface","internal","is","lock","namespace","new","operator","out","override","params","private","protected","public","readonly","record","ref","return","sealed","sizeof","stackalloc","static","struct","switch","this","throw","try","typeof","unchecked","unsafe","using","virtual","void","volatile","while"].concat(["add","alias","and","ascending","async","await","by","descending","equals","from","get","global","group","init","into","join","let","nameof","not","notnull","on","or","orderby","partial","remove","select","set","unmanaged","value|0","var","when","where","with","yield"]), +built_in:["bool","byte","char","decimal","delegate","double","dynamic","enum","float","int","long","nint","nuint","object","sbyte","short","string","ulong","uint","ushort"], +literal:["default","false","null","true"]},a=e.inherit(e.TITLE_MODE,{ +begin:"[a-zA-Z](\\.?\\w)*"}),i={className:"number",variants:[{ +begin:"\\b(0b[01']+)"},{ +begin:"(-?)\\b([\\d']+(\\.[\\d']*)?|\\.[\\d']+)(u|U|l|L|ul|UL|f|F|b|B)"},{ +begin:"(-?)(\\b0[xX][a-fA-F0-9']+|(\\b[\\d']+(\\.[\\d']*)?|\\.[\\d']+)([eE][-+]?[\\d']+)?)" +}],relevance:0},s={className:"string",begin:'@"',end:'"',contains:[{begin:'""'}] +},t=e.inherit(s,{illegal:/\n/}),r={className:"subst",begin:/\{/,end:/\}/, +keywords:n},l=e.inherit(r,{illegal:/\n/}),c={className:"string",begin:/\$"/, +end:'"',illegal:/\n/,contains:[{begin:/\{\{/},{begin:/\}\}/ +},e.BACKSLASH_ESCAPE,l]},o={className:"string",begin:/\$@"/,end:'"',contains:[{ +begin:/\{\{/},{begin:/\}\}/},{begin:'""'},r]},d=e.inherit(o,{illegal:/\n/, +contains:[{begin:/\{\{/},{begin:/\}\}/},{begin:'""'},l]}) +;r.contains=[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,i,e.C_BLOCK_COMMENT_MODE], +l.contains=[d,c,t,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,i,e.inherit(e.C_BLOCK_COMMENT_MODE,{ +illegal:/\n/})];const g={variants:[o,c,s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE] +},E={begin:"<",end:">",contains:[{beginKeywords:"in out"},a] +},_=e.IDENT_RE+"(<"+e.IDENT_RE+"(\\s*,\\s*"+e.IDENT_RE+")*>)?(\\[\\])?",b={ +begin:"@"+e.IDENT_RE,relevance:0};return{name:"C#",aliases:["cs","c#"], +keywords:n,illegal:/::/,contains:[e.COMMENT("///","$",{returnBegin:!0, +contains:[{className:"doctag",variants:[{begin:"///",relevance:0},{ +begin:"\x3c!--|--\x3e"},{begin:""}]}] +}),e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,{className:"meta",begin:"#", +end:"$",keywords:{ +"meta-keyword":"if else elif endif define undef warning error line region endregion pragma checksum" +}},g,i,{beginKeywords:"class interface",relevance:0,end:/[{;=]/, +illegal:/[^\s:,]/,contains:[{beginKeywords:"where class" +},a,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{beginKeywords:"namespace", +relevance:0,end:/[{;=]/,illegal:/[^\s:]/, +contains:[a,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{ +beginKeywords:"record",relevance:0,end:/[{;=]/,illegal:/[^\s:]/, +contains:[a,E,e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"meta", +begin:"^\\s*\\[",excludeBegin:!0,end:"\\]",excludeEnd:!0,contains:[{ +className:"meta-string",begin:/"/,end:/"/}]},{ +beginKeywords:"new return throw await else",relevance:0},{className:"function", +begin:"("+_+"\\s+)+"+e.IDENT_RE+"\\s*(<.+>\\s*)?\\(",returnBegin:!0, +end:/\s*[{;=]/,excludeEnd:!0,keywords:n,contains:[{ +beginKeywords:"public private protected static internal protected abstract async extern override unsafe virtual new sealed partial", +relevance:0},{begin:e.IDENT_RE+"\\s*(<.+>\\s*)?\\(",returnBegin:!0, +contains:[e.TITLE_MODE,E],relevance:0},{className:"params",begin:/\(/,end:/\)/, +excludeBegin:!0,excludeEnd:!0,keywords:n,relevance:0, +contains:[g,i,e.C_BLOCK_COMMENT_MODE] +},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},b]}}})()); +hljs.registerLanguage("css",(()=>{"use strict" +;const e=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],t=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],i=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],o=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],r=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse() +;return n=>{const a=(e=>({IMPORTANT:{className:"meta",begin:"!important"}, +HEXCOLOR:{className:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"}, +ATTRIBUTE_SELECTOR_MODE:{className:"selector-attr",begin:/\[/,end:/\]/, +illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]} +}))(n),l=[n.APOS_STRING_MODE,n.QUOTE_STRING_MODE];return{name:"CSS", +case_insensitive:!0,illegal:/[=|'\$]/,keywords:{keyframePosition:"from to"}, +classNameAliases:{keyframePosition:"selector-tag"}, +contains:[n.C_BLOCK_COMMENT_MODE,{begin:/-(webkit|moz|ms|o)-(?=[a-z])/ +},n.CSS_NUMBER_MODE,{className:"selector-id",begin:/#[A-Za-z0-9_-]+/,relevance:0 +},{className:"selector-class",begin:"\\.[a-zA-Z-][a-zA-Z0-9_-]*",relevance:0 +},a.ATTRIBUTE_SELECTOR_MODE,{className:"selector-pseudo",variants:[{ +begin:":("+i.join("|")+")"},{begin:"::("+o.join("|")+")"}]},{ +className:"attribute",begin:"\\b("+r.join("|")+")\\b"},{begin:":",end:"[;}]", +contains:[a.HEXCOLOR,a.IMPORTANT,n.CSS_NUMBER_MODE,...l,{ +begin:/(url|data-uri)\(/,end:/\)/,relevance:0,keywords:{built_in:"url data-uri" +},contains:[{className:"string",begin:/[^)]/,endsWithParent:!0,excludeEnd:!0}] +},{className:"built_in",begin:/[\w-]+(?=\()/}]},{ +begin:(s=/@/,((...e)=>e.map((e=>(e=>e?"string"==typeof e?e:e.source:null)(e))).join(""))("(?=",s,")")), +end:"[{;]",relevance:0,illegal:/:/,contains:[{className:"keyword", +begin:/@-?\w[\w]*(-\w+)*/},{begin:/\s/,endsWithParent:!0,excludeEnd:!0, +relevance:0,keywords:{$pattern:/[a-z-]+/,keyword:"and or not only", +attribute:t.join(" ")},contains:[{begin:/[a-z-]+(?=:)/,className:"attribute" +},...l,n.CSS_NUMBER_MODE]}]},{className:"selector-tag", +begin:"\\b("+e.join("|")+")\\b"}]};var s}})()); +hljs.registerLanguage("diff",(()=>{"use strict";return e=>({name:"Diff", +aliases:["patch"],contains:[{className:"meta",relevance:10,variants:[{ +begin:/^@@ +-\d+,\d+ +\+\d+,\d+ +@@/},{begin:/^\*\*\* +\d+,\d+ +\*\*\*\*$/},{ +begin:/^--- +\d+,\d+ +----$/}]},{className:"comment",variants:[{begin:/Index: /, +end:/$/},{begin:/^index/,end:/$/},{begin:/={3,}/,end:/$/},{begin:/^-{3}/,end:/$/ +},{begin:/^\*{3} /,end:/$/},{begin:/^\+{3}/,end:/$/},{begin:/^\*{15}$/},{ +begin:/^diff --git/,end:/$/}]},{className:"addition",begin:/^\+/,end:/$/},{ +className:"deletion",begin:/^-/,end:/$/},{className:"addition",begin:/^!/, +end:/$/}]})})()); +hljs.registerLanguage("go",(()=>{"use strict";return e=>{const n={ +keyword:"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune", +literal:"true false iota nil", +built_in:"append cap close complex copy imag len make new panic print println real recover delete" +};return{name:"Go",aliases:["golang"],keywords:n,illegal:"{"use strict";function e(...e){ +return e.map((e=>{return(n=e)?"string"==typeof n?n:n.source:null;var n +})).join("")}return n=>{const a="HTTP/(2|1\\.[01])",s={className:"attribute", +begin:e("^",/[A-Za-z][A-Za-z0-9-]*/,"(?=\\:\\s)"),starts:{contains:[{ +className:"punctuation",begin:/: /,relevance:0,starts:{end:"$",relevance:0}}]} +},t=[s,{begin:"\\n\\n",starts:{subLanguage:[],endsWithParent:!0}}];return{ +name:"HTTP",aliases:["https"],illegal:/\S/,contains:[{begin:"^(?="+a+" \\d{3})", +end:/$/,contains:[{className:"meta",begin:a},{className:"number", +begin:"\\b\\d{3}\\b"}],starts:{end:/\b\B/,illegal:/\S/,contains:t}},{ +begin:"(?=^[A-Z]+ (.*?) "+a+"$)",end:/$/,contains:[{className:"string", +begin:" ",end:" ",excludeBegin:!0,excludeEnd:!0},{className:"meta",begin:a},{ +className:"keyword",begin:"[A-Z]+"}],starts:{end:/\b\B/,illegal:/\S/,contains:t} +},n.inherit(s,{relevance:0})]}}})()); +hljs.registerLanguage("ini",(()=>{"use strict";function e(e){ +return e?"string"==typeof e?e:e.source:null}function n(...n){ +return n.map((n=>e(n))).join("")}return s=>{const a={className:"number", +relevance:0,variants:[{begin:/([+-]+)?[\d]+_[\d_]+/},{begin:s.NUMBER_RE}] +},i=s.COMMENT();i.variants=[{begin:/;/,end:/$/},{begin:/#/,end:/$/}];const t={ +className:"variable",variants:[{begin:/\$[\w\d"][\w\d_]*/},{begin:/\$\{(.*?)\}/ +}]},r={className:"literal",begin:/\bon|off|true|false|yes|no\b/},l={ +className:"string",contains:[s.BACKSLASH_ESCAPE],variants:[{begin:"'''", +end:"'''",relevance:10},{begin:'"""',end:'"""',relevance:10},{begin:'"',end:'"' +},{begin:"'",end:"'"}]},c={begin:/\[/,end:/\]/,contains:[i,r,t,l,a,"self"], +relevance:0 +},g="("+[/[A-Za-z0-9_-]+/,/"(\\"|[^"])*"/,/'[^']*'/].map((n=>e(n))).join("|")+")" +;return{name:"TOML, also INI",aliases:["toml"],case_insensitive:!0,illegal:/\S/, +contains:[i,{className:"section",begin:/\[+/,end:/\]+/},{ +begin:n(g,"(\\s*\\.\\s*",g,")*",n("(?=",/\s*=\s*[^#\s]/,")")),className:"attr", +starts:{end:/$/,contains:[i,c,r,t,l,a]}}]}}})()); +hljs.registerLanguage("java",(()=>{"use strict" +;var e="\\.([0-9](_*[0-9])*)",n="[0-9a-fA-F](_*[0-9a-fA-F])*",a={ +className:"number",variants:[{ +begin:`(\\b([0-9](_*[0-9])*)((${e})|\\.)?|(${e}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b` +},{begin:`\\b([0-9](_*[0-9])*)((${e})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{ +begin:`(${e})[fFdD]?\\b`},{begin:"\\b([0-9](_*[0-9])*)[fFdD]\\b"},{ +begin:`\\b0[xX]((${n})\\.?|(${n})?\\.(${n}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b` +},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${n})[lL]?\\b`},{ +begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}], +relevance:0};return e=>{ +var n="false synchronized int abstract float private char boolean var static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private module requires exports do",s={ +className:"meta",begin:"@[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*", +contains:[{begin:/\(/,end:/\)/,contains:["self"]}]};const r=a;return{ +name:"Java",aliases:["jsp"],keywords:n,illegal:/<\/|#/, +contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{begin:/\w+@/, +relevance:0},{className:"doctag",begin:"@[A-Za-z]+"}]}),{ +begin:/import java\.[a-z]+\./,keywords:"import",relevance:2 +},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{ +className:"class",beginKeywords:"class interface enum",end:/[{;=]/, +excludeEnd:!0,relevance:1,keywords:"class interface enum",illegal:/[:"\[\]]/, +contains:[{beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{ +beginKeywords:"new throw return else",relevance:0},{className:"class", +begin:"record\\s+"+e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,excludeEnd:!0, +end:/[{;=]/,keywords:n,contains:[{beginKeywords:"record"},{ +begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0, +contains:[e.UNDERSCORE_TITLE_MODE]},{className:"params",begin:/\(/,end:/\)/, +keywords:n,relevance:0,contains:[e.C_BLOCK_COMMENT_MODE] +},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{className:"function", +begin:"([\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*(<[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*(\\s*,\\s*[\xc0-\u02b8a-zA-Z_$][\xc0-\u02b8a-zA-Z_$0-9]*)*>)?\\s+)+"+e.UNDERSCORE_IDENT_RE+"\\s*\\(", +returnBegin:!0,end:/[{;=]/,excludeEnd:!0,keywords:n,contains:[{ +begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0, +contains:[e.UNDERSCORE_TITLE_MODE]},{className:"params",begin:/\(/,end:/\)/, +keywords:n,relevance:0, +contains:[s,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,r,e.C_BLOCK_COMMENT_MODE] +},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},r,s]}}})()); +hljs.registerLanguage("javascript",(()=>{"use strict" +;const e="[A-Za-z$_][0-9A-Za-z$_]*",n=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],a=["true","false","null","undefined","NaN","Infinity"],s=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer","BigInt64Array","BigUint64Array","BigInt"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]) +;function r(e){return t("(?=",e,")")}function t(...e){return e.map((e=>{ +return(n=e)?"string"==typeof n?n:n.source:null;var n})).join("")}return i=>{ +const c=e,o={begin:/<[A-Za-z0-9\\._:-]+/,end:/\/[A-Za-z0-9\\._:-]+>|\/>/, +isTrulyOpeningTag:(e,n)=>{const a=e[0].length+e.index,s=e.input[a] +;"<"!==s?">"===s&&(((e,{after:n})=>{const a="", +returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{ +begin:i.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0 +},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:f}]}] +},{begin:/,/,relevance:0},{className:"",begin:/\s/,end:/\s*/,skip:!0},{ +variants:[{begin:"<>",end:""},{begin:o.begin,"on:begin":o.isTrulyOpeningTag, +end:o.end}],subLanguage:"xml",contains:[{begin:o.begin,end:o.end,skip:!0, +contains:["self"]}]}],relevance:0},{className:"function", +beginKeywords:"function",end:/[{;]/,excludeEnd:!0,keywords:l, +contains:["self",i.inherit(i.TITLE_MODE,{begin:c}),p],illegal:/%/},{ +beginKeywords:"while if switch catch for"},{className:"function", +begin:i.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{", +returnBegin:!0,contains:[p,i.inherit(i.TITLE_MODE,{begin:c})]},{variants:[{ +begin:"\\."+c},{begin:"\\$"+c}],relevance:0},{className:"class", +beginKeywords:"class",end:/[{;=]/,excludeEnd:!0,illegal:/[:"[\]]/,contains:[{ +beginKeywords:"extends"},i.UNDERSCORE_TITLE_MODE]},{begin:/\b(?=constructor)/, +end:/[{;]/,excludeEnd:!0,contains:[i.inherit(i.TITLE_MODE,{begin:c}),"self",p] +},{begin:"(get|set)\\s+(?="+c+"\\()",end:/\{/,keywords:"get set", +contains:[i.inherit(i.TITLE_MODE,{begin:c}),{begin:/\(\)/},p]},{begin:/\$[(.]/}] +}}})()); +hljs.registerLanguage("json",(()=>{"use strict";return n=>{const e={ +literal:"true false null" +},i=[n.C_LINE_COMMENT_MODE,n.C_BLOCK_COMMENT_MODE],a=[n.QUOTE_STRING_MODE,n.C_NUMBER_MODE],l={ +end:",",endsWithParent:!0,excludeEnd:!0,contains:a,keywords:e},t={begin:/\{/, +end:/\}/,contains:[{className:"attr",begin:/"/,end:/"/, +contains:[n.BACKSLASH_ESCAPE],illegal:"\\n"},n.inherit(l,{begin:/:/ +})].concat(i),illegal:"\\S"},s={begin:"\\[",end:"\\]",contains:[n.inherit(l)], +illegal:"\\S"};return a.push(t,s),i.forEach((n=>{a.push(n)})),{name:"JSON", +contains:a,keywords:e,illegal:"\\S"}}})()); +hljs.registerLanguage("kotlin",(()=>{"use strict" +;var e="\\.([0-9](_*[0-9])*)",n="[0-9a-fA-F](_*[0-9a-fA-F])*",a={ +className:"number",variants:[{ +begin:`(\\b([0-9](_*[0-9])*)((${e})|\\.)?|(${e}))[eE][+-]?([0-9](_*[0-9])*)[fFdD]?\\b` +},{begin:`\\b([0-9](_*[0-9])*)((${e})[fFdD]?\\b|\\.([fFdD]\\b)?)`},{ +begin:`(${e})[fFdD]?\\b`},{begin:"\\b([0-9](_*[0-9])*)[fFdD]\\b"},{ +begin:`\\b0[xX]((${n})\\.?|(${n})?\\.(${n}))[pP][+-]?([0-9](_*[0-9])*)[fFdD]?\\b` +},{begin:"\\b(0|[1-9](_*[0-9])*)[lL]?\\b"},{begin:`\\b0[xX](${n})[lL]?\\b`},{ +begin:"\\b0(_*[0-7])*[lL]?\\b"},{begin:"\\b0[bB][01](_*[01])*[lL]?\\b"}], +relevance:0};return e=>{const n={ +keyword:"abstract as val var vararg get set class object open private protected public noinline crossinline dynamic final enum if else do while for when throw try catch finally import package is in fun override companion reified inline lateinit init interface annotation data sealed internal infix operator out by constructor super tailrec where const inner suspend typealias external expect actual", +built_in:"Byte Short Char Int Long Boolean Float Double Void Unit Nothing", +literal:"true false null"},i={className:"symbol",begin:e.UNDERSCORE_IDENT_RE+"@" +},s={className:"subst",begin:/\$\{/,end:/\}/,contains:[e.C_NUMBER_MODE]},t={ +className:"variable",begin:"\\$"+e.UNDERSCORE_IDENT_RE},r={className:"string", +variants:[{begin:'"""',end:'"""(?=[^"])',contains:[t,s]},{begin:"'",end:"'", +illegal:/\n/,contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"',illegal:/\n/, +contains:[e.BACKSLASH_ESCAPE,t,s]}]};s.contains.push(r);const l={ +className:"meta", +begin:"@(?:file|property|field|get|set|receiver|param|setparam|delegate)\\s*:(?:\\s*"+e.UNDERSCORE_IDENT_RE+")?" +},c={className:"meta",begin:"@"+e.UNDERSCORE_IDENT_RE,contains:[{begin:/\(/, +end:/\)/,contains:[e.inherit(r,{className:"meta-string"})]}] +},o=a,b=e.COMMENT("/\\*","\\*/",{contains:[e.C_BLOCK_COMMENT_MODE]}),E={ +variants:[{className:"type",begin:e.UNDERSCORE_IDENT_RE},{begin:/\(/,end:/\)/, +contains:[]}]},d=E;return d.variants[1].contains=[E],E.variants[1].contains=[d], +{name:"Kotlin",aliases:["kt","kts"],keywords:n, +contains:[e.COMMENT("/\\*\\*","\\*/",{relevance:0,contains:[{className:"doctag", +begin:"@[A-Za-z]+"}]}),e.C_LINE_COMMENT_MODE,b,{className:"keyword", +begin:/\b(break|continue|return|this)\b/,starts:{contains:[{className:"symbol", +begin:/@\w+/}]}},i,l,c,{className:"function",beginKeywords:"fun",end:"[(]|$", +returnBegin:!0,excludeEnd:!0,keywords:n,relevance:5,contains:[{ +begin:e.UNDERSCORE_IDENT_RE+"\\s*\\(",returnBegin:!0,relevance:0, +contains:[e.UNDERSCORE_TITLE_MODE]},{className:"type",begin://, +keywords:"reified",relevance:0},{className:"params",begin:/\(/,end:/\)/, +endsParent:!0,keywords:n,relevance:0,contains:[{begin:/:/,end:/[=,\/]/, +endsWithParent:!0,contains:[E,e.C_LINE_COMMENT_MODE,b],relevance:0 +},e.C_LINE_COMMENT_MODE,b,l,c,r,e.C_NUMBER_MODE]},b]},{className:"class", +beginKeywords:"class interface trait",end:/[:\{(]|$/,excludeEnd:!0, +illegal:"extends implements",contains:[{ +beginKeywords:"public protected internal private constructor" +},e.UNDERSCORE_TITLE_MODE,{className:"type",begin://,excludeBegin:!0, +excludeEnd:!0,relevance:0},{className:"type",begin:/[,:]\s*/,end:/[<\(,]|$/, +excludeBegin:!0,returnEnd:!0},l,c]},r,{className:"meta",begin:"^#!/usr/bin/env", +end:"$",illegal:"\n"},o]}}})()); +hljs.registerLanguage("less",(()=>{"use strict" +;const e=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],t=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],i=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],o=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],n=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse(),r=i.concat(o) +;return a=>{const s=(e=>({IMPORTANT:{className:"meta",begin:"!important"}, +HEXCOLOR:{className:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"}, +ATTRIBUTE_SELECTOR_MODE:{className:"selector-attr",begin:/\[/,end:/\]/, +illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]} +}))(a),l=r,d="([\\w-]+|@\\{[\\w-]+\\})",c=[],g=[],b=e=>({className:"string", +begin:"~?"+e+".*?"+e}),m=(e,t,i)=>({className:e,begin:t,relevance:i}),u={ +$pattern:/[a-z-]+/,keyword:"and or not only",attribute:t.join(" ")},p={ +begin:"\\(",end:"\\)",contains:g,keywords:u,relevance:0} +;g.push(a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,b("'"),b('"'),a.CSS_NUMBER_MODE,{ +begin:"(url|data-uri)\\(",starts:{className:"string",end:"[\\)\\n]", +excludeEnd:!0} +},s.HEXCOLOR,p,m("variable","@@?[\\w-]+",10),m("variable","@\\{[\\w-]+\\}"),m("built_in","~?`[^`]*?`"),{ +className:"attribute",begin:"[\\w-]+\\s*:",end:":",returnBegin:!0,excludeEnd:!0 +},s.IMPORTANT);const f=g.concat({begin:/\{/,end:/\}/,contains:c}),h={ +beginKeywords:"when",endsWithParent:!0,contains:[{beginKeywords:"and not" +}].concat(g)},w={begin:d+"\\s*:",returnBegin:!0,end:/[;}]/,relevance:0, +contains:[{begin:/-(webkit|moz|ms|o)-/},{className:"attribute", +begin:"\\b("+n.join("|")+")\\b",end:/(?=:)/,starts:{endsWithParent:!0, +illegal:"[<=$]",relevance:0,contains:g}}]},v={className:"keyword", +begin:"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\b", +starts:{end:"[;{}]",keywords:u,returnEnd:!0,contains:g,relevance:0}},y={ +className:"variable",variants:[{begin:"@[\\w-]+\\s*:",relevance:15},{ +begin:"@[\\w-]+"}],starts:{end:"[;}]",returnEnd:!0,contains:f}},k={variants:[{ +begin:"[\\.#:&\\[>]",end:"[;{}]"},{begin:d,end:/\{/}],returnBegin:!0, +returnEnd:!0,illegal:"[<='$\"]",relevance:0, +contains:[a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,h,m("keyword","all\\b"),m("variable","@\\{[\\w-]+\\}"),{ +begin:"\\b("+e.join("|")+")\\b",className:"selector-tag" +},m("selector-tag",d+"%?",0),m("selector-id","#"+d),m("selector-class","\\."+d,0),m("selector-tag","&",0),s.ATTRIBUTE_SELECTOR_MODE,{ +className:"selector-pseudo",begin:":("+i.join("|")+")"},{ +className:"selector-pseudo",begin:"::("+o.join("|")+")"},{begin:"\\(",end:"\\)", +contains:f},{begin:"!important"}]},E={begin:`[\\w-]+:(:)?(${l.join("|")})`, +returnBegin:!0,contains:[k]} +;return c.push(a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,v,y,E,w,k),{ +name:"Less",case_insensitive:!0,illegal:"[=>'/<($\"]",contains:c}}})()); +hljs.registerLanguage("lua",(()=>{"use strict";return e=>{ +const t="\\[=*\\[",a="\\]=*\\]",n={begin:t,end:a,contains:["self"] +},o=[e.COMMENT("--(?!\\[=*\\[)","$"),e.COMMENT("--\\[=*\\[",a,{contains:[n], +relevance:10})];return{name:"Lua",keywords:{$pattern:e.UNDERSCORE_IDENT_RE, +literal:"true false nil", +keyword:"and break do else elseif end for goto if in local not or repeat return then until while", +built_in:"_G _ENV _VERSION __index __newindex __mode __call __metatable __tostring __len __gc __add __sub __mul __div __mod __pow __concat __unm __eq __lt __le assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall arg self coroutine resume yield status wrap create running debug getupvalue debug sethook getmetatable gethook setmetatable setlocal traceback setfenv getinfo setupvalue getlocal getregistry getfenv io lines write close flush open output type read stderr stdin input stdout popen tmpfile math log max acos huge ldexp pi cos tanh pow deg tan cosh sinh random randomseed frexp ceil floor rad abs sqrt modf asin min mod fmod log10 atan2 exp sin atan os exit setlocale date getenv difftime remove time clock tmpname rename execute package preload loadlib loaded loaders cpath config path seeall string sub upper len gfind rep find match char dump gmatch reverse byte format gsub lower table setn insert getn foreachi maxn foreach concat sort remove" +},contains:o.concat([{className:"function",beginKeywords:"function",end:"\\)", +contains:[e.inherit(e.TITLE_MODE,{ +begin:"([_a-zA-Z]\\w*\\.)*([_a-zA-Z]\\w*:)?[_a-zA-Z]\\w*"}),{className:"params", +begin:"\\(",endsWithParent:!0,contains:o}].concat(o) +},e.C_NUMBER_MODE,e.APOS_STRING_MODE,e.QUOTE_STRING_MODE,{className:"string", +begin:t,end:a,contains:[n],relevance:5}])}}})()); +hljs.registerLanguage("makefile",(()=>{"use strict";return e=>{const i={ +className:"variable",variants:[{begin:"\\$\\("+e.UNDERSCORE_IDENT_RE+"\\)", +contains:[e.BACKSLASH_ESCAPE]},{begin:/\$[@%{"use strict";function e(e){ +return e?"string"==typeof e?e:e.source:null}function n(e){return a("(?=",e,")")} +function a(...n){return n.map((n=>e(n))).join("")}function s(...n){ +return"("+n.map((n=>e(n))).join("|")+")"}return e=>{ +const t=a(/[A-Z_]/,a("(",/[A-Z0-9_.-]*:/,")?"),/[A-Z0-9_.-]*/),i={ +className:"symbol",begin:/&[a-z]+;|&#[0-9]+;|&#x[a-f0-9]+;/},r={begin:/\s/, +contains:[{className:"meta-keyword",begin:/#?[a-z_][a-z1-9_-]+/,illegal:/\n/}] +},c=e.inherit(r,{begin:/\(/,end:/\)/}),l=e.inherit(e.APOS_STRING_MODE,{ +className:"meta-string"}),g=e.inherit(e.QUOTE_STRING_MODE,{ +className:"meta-string"}),m={endsWithParent:!0,illegal:/`]+/}]}] +}]};return{name:"HTML, XML", +aliases:["html","xhtml","rss","atom","xjb","xsd","xsl","plist","wsf","svg"], +case_insensitive:!0,contains:[{className:"meta",begin://, +relevance:10,contains:[r,g,l,c,{begin:/\[/,end:/\]/,contains:[{className:"meta", +begin://,contains:[r,c,g,l]}]}]},e.COMMENT(//,{ +relevance:10}),{begin://,relevance:10},i,{ +className:"meta",begin:/<\?xml/,end:/\?>/,relevance:10},{className:"tag", +begin:/)/,end:/>/,keywords:{name:"style"},contains:[m],starts:{ +end:/<\/style>/,returnEnd:!0,subLanguage:["css","xml"]}},{className:"tag", +begin:/)/,end:/>/,keywords:{name:"script"},contains:[m],starts:{ +end:/<\/script>/,returnEnd:!0,subLanguage:["javascript","handlebars","xml"]}},{ +className:"tag",begin:/<>|<\/>/},{className:"tag", +begin:a(//,/>/,/\s/)))),end:/\/?>/,contains:[{className:"name", +begin:t,relevance:0,starts:m}]},{className:"tag",begin:a(/<\//,n(a(t,/>/))), +contains:[{className:"name",begin:t,relevance:0},{begin:/>/,relevance:0, +endsParent:!0}]}]}}})()); +hljs.registerLanguage("markdown",(()=>{"use strict";function n(...n){ +return n.map((n=>{return(e=n)?"string"==typeof e?e:e.source:null;var e +})).join("")}return e=>{const a={begin:/<\/?[A-Za-z_]/,end:">", +subLanguage:"xml",relevance:0},i={variants:[{begin:/\[.+?\]\[.*?\]/,relevance:0 +},{begin:/\[.+?\]\(((data|javascript|mailto):|(?:http|ftp)s?:\/\/).*?\)/, +relevance:2},{begin:n(/\[.+?\]\(/,/[A-Za-z][A-Za-z0-9+.-]*/,/:\/\/.*?\)/), +relevance:2},{begin:/\[.+?\]\([./?&#].*?\)/,relevance:1},{ +begin:/\[.+?\]\(.*?\)/,relevance:0}],returnBegin:!0,contains:[{ +className:"string",relevance:0,begin:"\\[",end:"\\]",excludeBegin:!0, +returnEnd:!0},{className:"link",relevance:0,begin:"\\]\\(",end:"\\)", +excludeBegin:!0,excludeEnd:!0},{className:"symbol",relevance:0,begin:"\\]\\[", +end:"\\]",excludeBegin:!0,excludeEnd:!0}]},s={className:"strong",contains:[], +variants:[{begin:/_{2}/,end:/_{2}/},{begin:/\*{2}/,end:/\*{2}/}]},c={ +className:"emphasis",contains:[],variants:[{begin:/\*(?!\*)/,end:/\*/},{ +begin:/_(?!_)/,end:/_/,relevance:0}]};s.contains.push(c),c.contains.push(s) +;let t=[a,i] +;return s.contains=s.contains.concat(t),c.contains=c.contains.concat(t), +t=t.concat(s,c),{name:"Markdown",aliases:["md","mkdown","mkd"],contains:[{ +className:"section",variants:[{begin:"^#{1,6}",end:"$",contains:t},{ +begin:"(?=^.+?\\n[=-]{2,}$)",contains:[{begin:"^[=-]*$"},{begin:"^",end:"\\n", +contains:t}]}]},a,{className:"bullet",begin:"^[ \t]*([*+-]|(\\d+\\.))(?=\\s+)", +end:"\\s+",excludeEnd:!0},s,c,{className:"quote",begin:"^>\\s+",contains:t, +end:"$"},{className:"code",variants:[{begin:"(`{3,})[^`](.|\\n)*?\\1`*[ ]*"},{ +begin:"(~{3,})[^~](.|\\n)*?\\1~*[ ]*"},{begin:"```",end:"```+[ ]*$"},{ +begin:"~~~",end:"~~~+[ ]*$"},{begin:"`.+?`"},{begin:"(?=^( {4}|\\t))", +contains:[{begin:"^( {4}|\\t)",end:"(\\n)$"}],relevance:0}]},{ +begin:"^[-\\*]{3,}",end:"$"},i,{begin:/^\[[^\n]+\]:/,returnBegin:!0,contains:[{ +className:"symbol",begin:/\[/,end:/\]/,excludeBegin:!0,excludeEnd:!0},{ +className:"link",begin:/:\s*/,end:/$/,excludeBegin:!0}]}]}}})()); +hljs.registerLanguage("nginx",(()=>{"use strict";return e=>{const n={ +className:"variable",variants:[{begin:/\$\d+/},{begin:/\$\{/,end:/\}/},{ +begin:/[$@]/+e.UNDERSCORE_IDENT_RE}]},a={endsWithParent:!0,keywords:{ +$pattern:"[a-z/_]+", +literal:"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll" +},relevance:0,illegal:"=>",contains:[e.HASH_COMMENT_MODE,{className:"string", +contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:/"/,end:/"/},{begin:/'/,end:/'/ +}]},{begin:"([a-z]+):/",end:"\\s",endsWithParent:!0,excludeEnd:!0,contains:[n] +},{className:"regexp",contains:[e.BACKSLASH_ESCAPE,n],variants:[{begin:"\\s\\^", +end:"\\s|\\{|;",returnEnd:!0},{begin:"~\\*?\\s+",end:"\\s|\\{|;",returnEnd:!0},{ +begin:"\\*(\\.[a-z\\-]+)+"},{begin:"([a-z\\-]+\\.)+\\*"}]},{className:"number", +begin:"\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b"},{ +className:"number",begin:"\\b\\d+[kKmMgGdshdwy]*\\b",relevance:0},n]};return{ +name:"Nginx config",aliases:["nginxconf"],contains:[e.HASH_COMMENT_MODE,{ +begin:e.UNDERSCORE_IDENT_RE+"\\s+\\{",returnBegin:!0,end:/\{/,contains:[{ +className:"section",begin:e.UNDERSCORE_IDENT_RE}],relevance:0},{ +begin:e.UNDERSCORE_IDENT_RE+"\\s",end:";|\\{",returnBegin:!0,contains:[{ +className:"attribute",begin:e.UNDERSCORE_IDENT_RE,starts:a}],relevance:0}], +illegal:"[^\\s\\}]"}}})()); +hljs.registerLanguage("objectivec",(()=>{"use strict";return e=>{ +const n=/[a-zA-Z@][a-zA-Z0-9_]*/,_={$pattern:n, +keyword:"@interface @class @protocol @implementation"};return{ +name:"Objective-C",aliases:["mm","objc","obj-c","obj-c++","objective-c++"], +keywords:{$pattern:n, +keyword:"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required @encode @package @import @defs @compatibility_alias __bridge __bridge_transfer __bridge_retained __bridge_retain __covariant __contravariant __kindof _Nonnull _Nullable _Null_unspecified __FUNCTION__ __PRETTY_FUNCTION__ __attribute__ getter setter retain unsafe_unretained nonnull nullable null_unspecified null_resettable class instancetype NS_DESIGNATED_INITIALIZER NS_UNAVAILABLE NS_REQUIRES_SUPER NS_RETURNS_INNER_POINTER NS_INLINE NS_AVAILABLE NS_DEPRECATED NS_ENUM NS_OPTIONS NS_SWIFT_UNAVAILABLE NS_ASSUME_NONNULL_BEGIN NS_ASSUME_NONNULL_END NS_REFINED_FOR_SWIFT NS_SWIFT_NAME NS_SWIFT_NOTHROW NS_DURING NS_HANDLER NS_ENDHANDLER NS_VALUERETURN NS_VOIDRETURN", +literal:"false true FALSE TRUE nil YES NO NULL", +built_in:"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once" +},illegal:"/,end:/$/, +illegal:"\\n"},e.C_LINE_COMMENT_MODE,e.C_BLOCK_COMMENT_MODE]},{ +className:"class",begin:"("+_.keyword.split(" ").join("|")+")\\b",end:/(\{|$)/, +excludeEnd:!0,keywords:_,contains:[e.UNDERSCORE_TITLE_MODE]},{ +begin:"\\."+e.UNDERSCORE_IDENT_RE,relevance:0}]}}})()); +hljs.registerLanguage("perl",(()=>{"use strict";function e(e){ +return e?"string"==typeof e?e:e.source:null}function n(...n){ +return n.map((n=>e(n))).join("")}function t(...n){ +return"("+n.map((n=>e(n))).join("|")+")"}return e=>{ +const r=/[dualxmsipngr]{0,12}/,s={$pattern:/[\w.]+/, +keyword:"abs accept alarm and atan2 bind binmode bless break caller chdir chmod chomp chop chown chr chroot close closedir connect continue cos crypt dbmclose dbmopen defined delete die do dump each else elsif endgrent endhostent endnetent endprotoent endpwent endservent eof eval exec exists exit exp fcntl fileno flock for foreach fork format formline getc getgrent getgrgid getgrnam gethostbyaddr gethostbyname gethostent getlogin getnetbyaddr getnetbyname getnetent getpeername getpgrp getpriority getprotobyname getprotobynumber getprotoent getpwent getpwnam getpwuid getservbyname getservbyport getservent getsockname getsockopt given glob gmtime goto grep gt hex if index int ioctl join keys kill last lc lcfirst length link listen local localtime log lstat lt ma map mkdir msgctl msgget msgrcv msgsnd my ne next no not oct open opendir or ord our pack package pipe pop pos print printf prototype push q|0 qq quotemeta qw qx rand read readdir readline readlink readpipe recv redo ref rename require reset return reverse rewinddir rindex rmdir say scalar seek seekdir select semctl semget semop send setgrent sethostent setnetent setpgrp setpriority setprotoent setpwent setservent setsockopt shift shmctl shmget shmread shmwrite shutdown sin sleep socket socketpair sort splice split sprintf sqrt srand stat state study sub substr symlink syscall sysopen sysread sysseek system syswrite tell telldir tie tied time times tr truncate uc ucfirst umask undef unless unlink unpack unshift untie until use utime values vec wait waitpid wantarray warn when while write x|0 xor y|0" +},i={className:"subst",begin:"[$@]\\{",end:"\\}",keywords:s},a={begin:/->\{/, +end:/\}/},o={variants:[{begin:/\$\d/},{ +begin:n(/[$%@](\^\w\b|#\w+(::\w+)*|\{\w+\}|\w+(::\w*)*)/,"(?![A-Za-z])(?![@$%])") +},{begin:/[$%@][^\s\w{]/,relevance:0}] +},c=[e.BACKSLASH_ESCAPE,i,o],g=[/!/,/\//,/\|/,/\?/,/'/,/"/,/#/],l=(e,t,s="\\1")=>{ +const i="\\1"===s?s:n(s,t) +;return n(n("(?:",e,")"),t,/(?:\\.|[^\\\/])*?/,i,/(?:\\.|[^\\\/])*?/,s,r) +},d=(e,t,s)=>n(n("(?:",e,")"),t,/(?:\\.|[^\\\/])*?/,s,r),p=[o,e.HASH_COMMENT_MODE,e.COMMENT(/^=\w/,/=cut/,{ +endsWithParent:!0}),a,{className:"string",contains:c,variants:[{ +begin:"q[qwxr]?\\s*\\(",end:"\\)",relevance:5},{begin:"q[qwxr]?\\s*\\[", +end:"\\]",relevance:5},{begin:"q[qwxr]?\\s*\\{",end:"\\}",relevance:5},{ +begin:"q[qwxr]?\\s*\\|",end:"\\|",relevance:5},{begin:"q[qwxr]?\\s*<",end:">", +relevance:5},{begin:"qw\\s+q",end:"q",relevance:5},{begin:"'",end:"'", +contains:[e.BACKSLASH_ESCAPE]},{begin:'"',end:'"'},{begin:"`",end:"`", +contains:[e.BACKSLASH_ESCAPE]},{begin:/\{\w+\}/,relevance:0},{ +begin:"-?\\w+\\s*=>",relevance:0}]},{className:"number", +begin:"(\\b0[0-7_]+)|(\\b0x[0-9a-fA-F_]+)|(\\b[1-9][0-9_]*(\\.[0-9_]+)?)|[0_]\\b", +relevance:0},{ +begin:"(\\/\\/|"+e.RE_STARTERS_RE+"|\\b(split|return|print|reverse|grep)\\b)\\s*", +keywords:"split return print reverse grep",relevance:0, +contains:[e.HASH_COMMENT_MODE,{className:"regexp",variants:[{ +begin:l("s|tr|y",t(...g))},{begin:l("s|tr|y","\\(","\\)")},{ +begin:l("s|tr|y","\\[","\\]")},{begin:l("s|tr|y","\\{","\\}")}],relevance:2},{ +className:"regexp",variants:[{begin:/(m|qr)\/\//,relevance:0},{ +begin:d("(?:m|qr)?",/\//,/\//)},{begin:d("m|qr",t(...g),/\1/)},{ +begin:d("m|qr",/\(/,/\)/)},{begin:d("m|qr",/\[/,/\]/)},{ +begin:d("m|qr",/\{/,/\}/)}]}]},{className:"function",beginKeywords:"sub", +end:"(\\s*\\(.*?\\))?[;{]",excludeEnd:!0,relevance:5,contains:[e.TITLE_MODE]},{ +begin:"-\\w\\b",relevance:0},{begin:"^__DATA__$",end:"^__END__$", +subLanguage:"mojolicious",contains:[{begin:"^@@.*",end:"$",className:"comment"}] +}];return i.contains=p,a.contains=p,{name:"Perl",aliases:["pl","pm"],keywords:s, +contains:p}}})()); +hljs.registerLanguage("php",(()=>{"use strict";return e=>{const r={ +className:"variable", +begin:"\\$+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*(?![A-Za-z0-9])(?![$])"},t={ +className:"meta",variants:[{begin:/<\?php/,relevance:10},{begin:/<\?[=]?/},{ +begin:/\?>/}]},a={className:"subst",variants:[{begin:/\$\w+/},{begin:/\{\$/, +end:/\}/}]},n=e.inherit(e.APOS_STRING_MODE,{illegal:null +}),i=e.inherit(e.QUOTE_STRING_MODE,{illegal:null, +contains:e.QUOTE_STRING_MODE.contains.concat(a)}),o=e.END_SAME_AS_BEGIN({ +begin:/<<<[ \t]*(\w+)\n/,end:/[ \t]*(\w+)\b/, +contains:e.QUOTE_STRING_MODE.contains.concat(a)}),l={className:"string", +contains:[e.BACKSLASH_ESCAPE,t],variants:[e.inherit(n,{begin:"b'",end:"'" +}),e.inherit(i,{begin:'b"',end:'"'}),i,n,o]},s={className:"number",variants:[{ +begin:"\\b0b[01]+(?:_[01]+)*\\b"},{begin:"\\b0o[0-7]+(?:_[0-7]+)*\\b"},{ +begin:"\\b0x[\\da-f]+(?:_[\\da-f]+)*\\b"},{ +begin:"(?:\\b\\d+(?:_\\d+)*(\\.(?:\\d+(?:_\\d+)*))?|\\B\\.\\d+)(?:e[+-]?\\d+)?" +}],relevance:0},c={ +keyword:"__CLASS__ __DIR__ __FILE__ __FUNCTION__ __LINE__ __METHOD__ __NAMESPACE__ __TRAIT__ die echo exit include include_once print require require_once array abstract and as binary bool boolean break callable case catch class clone const continue declare default do double else elseif empty enddeclare endfor endforeach endif endswitch endwhile enum eval extends final finally float for foreach from global goto if implements instanceof insteadof int integer interface isset iterable list match|0 mixed new object or private protected public real return string switch throw trait try unset use var void while xor yield", +literal:"false null true", +built_in:"Error|0 AppendIterator ArgumentCountError ArithmeticError ArrayIterator ArrayObject AssertionError BadFunctionCallException BadMethodCallException CachingIterator CallbackFilterIterator CompileError Countable DirectoryIterator DivisionByZeroError DomainException EmptyIterator ErrorException Exception FilesystemIterator FilterIterator GlobIterator InfiniteIterator InvalidArgumentException IteratorIterator LengthException LimitIterator LogicException MultipleIterator NoRewindIterator OutOfBoundsException OutOfRangeException OuterIterator OverflowException ParentIterator ParseError RangeException RecursiveArrayIterator RecursiveCachingIterator RecursiveCallbackFilterIterator RecursiveDirectoryIterator RecursiveFilterIterator RecursiveIterator RecursiveIteratorIterator RecursiveRegexIterator RecursiveTreeIterator RegexIterator RuntimeException SeekableIterator SplDoublyLinkedList SplFileInfo SplFileObject SplFixedArray SplHeap SplMaxHeap SplMinHeap SplObjectStorage SplObserver SplObserver SplPriorityQueue SplQueue SplStack SplSubject SplSubject SplTempFileObject TypeError UnderflowException UnexpectedValueException UnhandledMatchError ArrayAccess Closure Generator Iterator IteratorAggregate Serializable Stringable Throwable Traversable WeakReference WeakMap Directory __PHP_Incomplete_Class parent php_user_filter self static stdClass" +};return{aliases:["php3","php4","php5","php6","php7","php8"], +case_insensitive:!0,keywords:c, +contains:[e.HASH_COMMENT_MODE,e.COMMENT("//","$",{contains:[t] +}),e.COMMENT("/\\*","\\*/",{contains:[{className:"doctag",begin:"@[A-Za-z]+"}] +}),e.COMMENT("__halt_compiler.+?;",!1,{endsWithParent:!0, +keywords:"__halt_compiler"}),t,{className:"keyword",begin:/\$this\b/},r,{ +begin:/(::|->)+[a-zA-Z_\x7f-\xff][a-zA-Z0-9_\x7f-\xff]*/},{className:"function", +relevance:0,beginKeywords:"fn function",end:/[;{]/,excludeEnd:!0, +illegal:"[$%\\[]",contains:[{beginKeywords:"use"},e.UNDERSCORE_TITLE_MODE,{ +begin:"=>",endsParent:!0},{className:"params",begin:"\\(",end:"\\)", +excludeBegin:!0,excludeEnd:!0,keywords:c, +contains:["self",r,e.C_BLOCK_COMMENT_MODE,l,s]}]},{className:"class",variants:[{ +beginKeywords:"enum",illegal:/[($"]/},{beginKeywords:"class interface trait", +illegal:/[:($"]/}],relevance:0,end:/\{/,excludeEnd:!0,contains:[{ +beginKeywords:"extends implements"},e.UNDERSCORE_TITLE_MODE]},{ +beginKeywords:"namespace",relevance:0,end:";",illegal:/[.']/, +contains:[e.UNDERSCORE_TITLE_MODE]},{beginKeywords:"use",relevance:0,end:";", +contains:[e.UNDERSCORE_TITLE_MODE]},l,s]}}})()); +hljs.registerLanguage("php-template",(()=>{"use strict";return n=>({ +name:"PHP template",subLanguage:"xml",contains:[{begin:/<\?(php|=)?/,end:/\?>/, +subLanguage:"php",contains:[{begin:"/\\*",end:"\\*/",skip:!0},{begin:'b"', +end:'"',skip:!0},{begin:"b'",end:"'",skip:!0},n.inherit(n.APOS_STRING_MODE,{ +illegal:null,className:null,contains:null,skip:!0 +}),n.inherit(n.QUOTE_STRING_MODE,{illegal:null,className:null,contains:null, +skip:!0})]}]})})()); +hljs.registerLanguage("plaintext",(()=>{"use strict";return t=>({ +name:"Plain text",aliases:["text","txt"],disableAutodetect:!0})})()); +hljs.registerLanguage("properties",(()=>{"use strict";return e=>{ +var n="[ \\t\\f]*",a=n+"[:=]"+n,t="("+a+"|[ \\t\\f]+)",r="([^\\\\\\W:= \\t\\f\\n]|\\\\.)+",s="([^\\\\:= \\t\\f\\n]|\\\\.)+",i={ +end:t,relevance:0,starts:{className:"string",end:/$/,relevance:0,contains:[{ +begin:"\\\\\\\\"},{begin:"\\\\\\n"}]}};return{name:".properties", +case_insensitive:!0,illegal:/\S/,contains:[e.COMMENT("^\\s*[!#]","$"),{ +returnBegin:!0,variants:[{begin:r+a,relevance:1},{begin:r+"[ \\t\\f]+", +relevance:0}],contains:[{className:"attr",begin:r,endsParent:!0,relevance:0}], +starts:i},{begin:s+t,returnBegin:!0,relevance:0,contains:[{className:"meta", +begin:s,endsParent:!0,relevance:0}],starts:i},{className:"attr",relevance:0, +begin:s+n+"$"}]}}})()); +hljs.registerLanguage("python",(()=>{"use strict";return e=>{const n={ +$pattern:/[A-Za-z]\w+|__\w+__/, +keyword:["and","as","assert","async","await","break","class","continue","def","del","elif","else","except","finally","for","from","global","if","import","in","is","lambda","nonlocal|10","not","or","pass","raise","return","try","while","with","yield"], +built_in:["__import__","abs","all","any","ascii","bin","bool","breakpoint","bytearray","bytes","callable","chr","classmethod","compile","complex","delattr","dict","dir","divmod","enumerate","eval","exec","filter","float","format","frozenset","getattr","globals","hasattr","hash","help","hex","id","input","int","isinstance","issubclass","iter","len","list","locals","map","max","memoryview","min","next","object","oct","open","ord","pow","print","property","range","repr","reversed","round","set","setattr","slice","sorted","staticmethod","str","sum","super","tuple","type","vars","zip"], +literal:["__debug__","Ellipsis","False","None","NotImplemented","True"], +type:["Any","Callable","Coroutine","Dict","List","Literal","Generic","Optional","Sequence","Set","Tuple","Type","Union"] +},a={className:"meta",begin:/^(>>>|\.\.\.) /},i={className:"subst",begin:/\{/, +end:/\}/,keywords:n,illegal:/#/},s={begin:/\{\{/,relevance:0},t={ +className:"string",contains:[e.BACKSLASH_ESCAPE],variants:[{ +begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?'''/,end:/'''/, +contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{ +begin:/([uU]|[bB]|[rR]|[bB][rR]|[rR][bB])?"""/,end:/"""/, +contains:[e.BACKSLASH_ESCAPE,a],relevance:10},{ +begin:/([fF][rR]|[rR][fF]|[fF])'''/,end:/'''/, +contains:[e.BACKSLASH_ESCAPE,a,s,i]},{begin:/([fF][rR]|[rR][fF]|[fF])"""/, +end:/"""/,contains:[e.BACKSLASH_ESCAPE,a,s,i]},{begin:/([uU]|[rR])'/,end:/'/, +relevance:10},{begin:/([uU]|[rR])"/,end:/"/,relevance:10},{ +begin:/([bB]|[bB][rR]|[rR][bB])'/,end:/'/},{begin:/([bB]|[bB][rR]|[rR][bB])"/, +end:/"/},{begin:/([fF][rR]|[rR][fF]|[fF])'/,end:/'/, +contains:[e.BACKSLASH_ESCAPE,s,i]},{begin:/([fF][rR]|[rR][fF]|[fF])"/,end:/"/, +contains:[e.BACKSLASH_ESCAPE,s,i]},e.APOS_STRING_MODE,e.QUOTE_STRING_MODE] +},r="[0-9](_?[0-9])*",l=`(\\b(${r}))?\\.(${r})|\\b(${r})\\.`,b={ +className:"number",relevance:0,variants:[{ +begin:`(\\b(${r})|(${l}))[eE][+-]?(${r})[jJ]?\\b`},{begin:`(${l})[jJ]?`},{ +begin:"\\b([1-9](_?[0-9])*|0+(_?0)*)[lLjJ]?\\b"},{ +begin:"\\b0[bB](_?[01])+[lL]?\\b"},{begin:"\\b0[oO](_?[0-7])+[lL]?\\b"},{ +begin:"\\b0[xX](_?[0-9a-fA-F])+[lL]?\\b"},{begin:`\\b(${r})[jJ]\\b`}]},o={ +className:"comment", +begin:(d=/# type:/,((...e)=>e.map((e=>(e=>e?"string"==typeof e?e:e.source:null)(e))).join(""))("(?=",d,")")), +end:/$/,keywords:n,contains:[{begin:/# type:/},{begin:/#/,end:/\b\B/, +endsWithParent:!0}]},c={className:"params",variants:[{className:"", +begin:/\(\s*\)/,skip:!0},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0, +keywords:n,contains:["self",a,b,t,e.HASH_COMMENT_MODE]}]};var d +;return i.contains=[t,b,a],{name:"Python",aliases:["py","gyp","ipython"], +keywords:n,illegal:/(<\/|->|\?)|=>/,contains:[a,b,{begin:/\bself\b/},{ +beginKeywords:"if",relevance:0},t,o,e.HASH_COMMENT_MODE,{variants:[{ +className:"function",beginKeywords:"def"},{className:"class", +beginKeywords:"class"}],end:/:/,illegal:/[${=;\n,]/, +contains:[e.UNDERSCORE_TITLE_MODE,c,{begin:/->/,endsWithParent:!0,keywords:n}] +},{className:"meta",begin:/^[\t ]*@/,end:/(?=#)|$/,contains:[b,c,t]}]}}})()); +hljs.registerLanguage("python-repl",(()=>{"use strict";return s=>({ +aliases:["pycon"],contains:[{className:"meta",starts:{end:/ |$/,starts:{end:"$", +subLanguage:"python"}},variants:[{begin:/^>>>(?=[ ]|$)/},{ +begin:/^\.\.\.(?=[ ]|$)/}]}]})})()); +hljs.registerLanguage("r",(()=>{"use strict";function e(...e){return e.map((e=>{ +return(a=e)?"string"==typeof a?a:a.source:null;var a})).join("")}return a=>{ +const n=/(?:(?:[a-zA-Z]|\.[._a-zA-Z])[._a-zA-Z0-9]*)|\.(?!\d)/;return{name:"R", +illegal:/->/,keywords:{$pattern:n, +keyword:"function if in break next repeat else for while", +literal:"NULL NA TRUE FALSE Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10", +built_in:"LETTERS letters month.abb month.name pi T F abs acos acosh all any anyNA Arg as.call as.character as.complex as.double as.environment as.integer as.logical as.null.default as.numeric as.raw asin asinh atan atanh attr attributes baseenv browser c call ceiling class Conj cos cosh cospi cummax cummin cumprod cumsum digamma dim dimnames emptyenv exp expression floor forceAndCall gamma gc.time globalenv Im interactive invisible is.array is.atomic is.call is.character is.complex is.double is.environment is.expression is.finite is.function is.infinite is.integer is.language is.list is.logical is.matrix is.na is.name is.nan is.null is.numeric is.object is.pairlist is.raw is.recursive is.single is.symbol lazyLoadDBfetch length lgamma list log max min missing Mod names nargs nzchar oldClass on.exit pos.to.env proc.time prod quote range Re rep retracemem return round seq_along seq_len seq.int sign signif sin sinh sinpi sqrt standardGeneric substitute sum switch tan tanh tanpi tracemem trigamma trunc unclass untracemem UseMethod xtfrm" +},compilerExtensions:[(a,n)=>{if(!a.beforeMatch)return +;if(a.starts)throw Error("beforeMatch cannot be used with starts") +;const i=Object.assign({},a);Object.keys(a).forEach((e=>{delete a[e] +})),a.begin=e(i.beforeMatch,e("(?=",i.begin,")")),a.starts={relevance:0, +contains:[Object.assign(i,{endsParent:!0})]},a.relevance=0,delete i.beforeMatch +}],contains:[a.COMMENT(/#'/,/$/,{contains:[{className:"doctag", +begin:"@examples",starts:{contains:[{begin:/\n/},{begin:/#'\s*(?=@[a-zA-Z]+)/, +endsParent:!0},{begin:/#'/,end:/$/,excludeBegin:!0}]}},{className:"doctag", +begin:"@param",end:/$/,contains:[{className:"variable",variants:[{begin:n},{ +begin:/`(?:\\.|[^`\\])+`/}],endsParent:!0}]},{className:"doctag", +begin:/@[a-zA-Z]+/},{className:"meta-keyword",begin:/\\[a-zA-Z]+/}] +}),a.HASH_COMMENT_MODE,{className:"string",contains:[a.BACKSLASH_ESCAPE], +variants:[a.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\(/,end:/\)(-*)"/ +}),a.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\{/,end:/\}(-*)"/ +}),a.END_SAME_AS_BEGIN({begin:/[rR]"(-*)\[/,end:/\](-*)"/ +}),a.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\(/,end:/\)(-*)'/ +}),a.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\{/,end:/\}(-*)'/ +}),a.END_SAME_AS_BEGIN({begin:/[rR]'(-*)\[/,end:/\](-*)'/}),{begin:'"',end:'"', +relevance:0},{begin:"'",end:"'",relevance:0}]},{className:"number",relevance:0, +beforeMatch:/([^a-zA-Z0-9._])/,variants:[{ +match:/0[xX][0-9a-fA-F]+\.[0-9a-fA-F]*[pP][+-]?\d+i?/},{ +match:/0[xX][0-9a-fA-F]+([pP][+-]?\d+)?[Li]?/},{ +match:/(\d+(\.\d*)?|\.\d+)([eE][+-]?\d+)?[Li]?/}]},{begin:"%",end:"%"},{ +begin:e(/[a-zA-Z][a-zA-Z_0-9]*/,"\\s+<-\\s+")},{begin:"`",end:"`",contains:[{ +begin:/\\./}]}]}}})()); +hljs.registerLanguage("ruby",(()=>{"use strict";function e(...e){ +return e.map((e=>{return(n=e)?"string"==typeof n?n:n.source:null;var n +})).join("")}return n=>{ +const a="([a-zA-Z_]\\w*[!?=]?|[-+~]@|<<|>>|=~|===?|<=>|[<>]=?|\\*\\*|[-/+%^&*~`|]|\\[\\]=?)",i={ +keyword:"and then defined module in return redo if BEGIN retry end for self when next until do begin unless END rescue else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor __FILE__", +built_in:"proc lambda",literal:"true false nil"},s={className:"doctag", +begin:"@[A-Za-z]+"},r={begin:"#<",end:">"},b=[n.COMMENT("#","$",{contains:[s] +}),n.COMMENT("^=begin","^=end",{contains:[s],relevance:10 +}),n.COMMENT("^__END__","\\n$")],c={className:"subst",begin:/#\{/,end:/\}/, +keywords:i},t={className:"string",contains:[n.BACKSLASH_ESCAPE,c],variants:[{ +begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/`/,end:/`/},{begin:/%[qQwWx]?\(/, +end:/\)/},{begin:/%[qQwWx]?\[/,end:/\]/},{begin:/%[qQwWx]?\{/,end:/\}/},{ +begin:/%[qQwWx]?/},{begin:/%[qQwWx]?\//,end:/\//},{begin:/%[qQwWx]?%/, +end:/%/},{begin:/%[qQwWx]?-/,end:/-/},{begin:/%[qQwWx]?\|/,end:/\|/},{ +begin:/\B\?(\\\d{1,3})/},{begin:/\B\?(\\x[A-Fa-f0-9]{1,2})/},{ +begin:/\B\?(\\u\{?[A-Fa-f0-9]{1,6}\}?)/},{ +begin:/\B\?(\\M-\\C-|\\M-\\c|\\c\\M-|\\M-|\\C-\\M-)[\x20-\x7e]/},{ +begin:/\B\?\\(c|C-)[\x20-\x7e]/},{begin:/\B\?\\?\S/},{ +begin:/<<[-~]?'?(\w+)\n(?:[^\n]*\n)*?\s*\1\b/,returnBegin:!0,contains:[{ +begin:/<<[-~]?'?/},n.END_SAME_AS_BEGIN({begin:/(\w+)/,end:/(\w+)/, +contains:[n.BACKSLASH_ESCAPE,c]})]}]},g="[0-9](_?[0-9])*",d={className:"number", +relevance:0,variants:[{ +begin:`\\b([1-9](_?[0-9])*|0)(\\.(${g}))?([eE][+-]?(${g})|r)?i?\\b`},{ +begin:"\\b0[dD][0-9](_?[0-9])*r?i?\\b"},{begin:"\\b0[bB][0-1](_?[0-1])*r?i?\\b" +},{begin:"\\b0[oO][0-7](_?[0-7])*r?i?\\b"},{ +begin:"\\b0[xX][0-9a-fA-F](_?[0-9a-fA-F])*r?i?\\b"},{ +begin:"\\b0(_?[0-7])+r?i?\\b"}]},l={className:"params",begin:"\\(",end:"\\)", +endsParent:!0,keywords:i},o=[t,{className:"class",beginKeywords:"class module", +end:"$|;",illegal:/=/,contains:[n.inherit(n.TITLE_MODE,{ +begin:"[A-Za-z_]\\w*(::\\w+)*(\\?|!)?"}),{begin:"<\\s*",contains:[{ +begin:"("+n.IDENT_RE+"::)?"+n.IDENT_RE,relevance:0}]}].concat(b)},{ +className:"function",begin:e(/def\s+/,(_=a+"\\s*(\\(|;|$)",e("(?=",_,")"))), +relevance:0,keywords:"def",end:"$|;",contains:[n.inherit(n.TITLE_MODE,{begin:a +}),l].concat(b)},{begin:n.IDENT_RE+"::"},{className:"symbol", +begin:n.UNDERSCORE_IDENT_RE+"(!|\\?)?:",relevance:0},{className:"symbol", +begin:":(?!\\s)",contains:[t,{begin:a}],relevance:0},d,{className:"variable", +begin:"(\\$\\W)|((\\$|@@?)(\\w+))(?=[^@$?])(?![A-Za-z])(?![@$?'])"},{ +className:"params",begin:/\|/,end:/\|/,relevance:0,keywords:i},{ +begin:"("+n.RE_STARTERS_RE+"|unless)\\s*",keywords:"unless",contains:[{ +className:"regexp",contains:[n.BACKSLASH_ESCAPE,c],illegal:/\n/,variants:[{ +begin:"/",end:"/[a-z]*"},{begin:/%r\{/,end:/\}[a-z]*/},{begin:"%r\\(", +end:"\\)[a-z]*"},{begin:"%r!",end:"![a-z]*"},{begin:"%r\\[",end:"\\][a-z]*"}] +}].concat(r,b),relevance:0}].concat(r,b);var _;c.contains=o,l.contains=o +;const E=[{begin:/^\s*=>/,starts:{end:"$",contains:o}},{className:"meta", +begin:"^([>?]>|[\\w#]+\\(\\w+\\):\\d+:\\d+>|(\\w+-)?\\d+\\.\\d+\\.\\d+(p\\d+)?[^\\d][^>]+>)(?=[ ])", +starts:{end:"$",contains:o}}];return b.unshift(r),{name:"Ruby", +aliases:["rb","gemspec","podspec","thor","irb"],keywords:i,illegal:/\/\*/, +contains:[n.SHEBANG({binary:"ruby"})].concat(E).concat(b).concat(o)}}})()); +hljs.registerLanguage("rust",(()=>{"use strict";return e=>{ +const n="([ui](8|16|32|64|128|size)|f(32|64))?",t="drop i8 i16 i32 i64 i128 isize u8 u16 u32 u64 u128 usize f32 f64 str char bool Box Option Result String Vec Copy Send Sized Sync Drop Fn FnMut FnOnce ToOwned Clone Debug PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator SliceConcatExt ToString assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln! macro_rules! assert_ne! debug_assert_ne!" +;return{name:"Rust",aliases:["rs"],keywords:{$pattern:e.IDENT_RE+"!?", +keyword:"abstract as async await become box break const continue crate do dyn else enum extern false final fn for if impl in let loop macro match mod move mut override priv pub ref return self Self static struct super trait true try type typeof unsafe unsized use virtual where while yield", +literal:"true false Some None Ok Err",built_in:t},illegal:""}]}}})()); +hljs.registerLanguage("scss",(()=>{"use strict" +;const e=["a","abbr","address","article","aside","audio","b","blockquote","body","button","canvas","caption","cite","code","dd","del","details","dfn","div","dl","dt","em","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","header","hgroup","html","i","iframe","img","input","ins","kbd","label","legend","li","main","mark","menu","nav","object","ol","p","q","quote","samp","section","span","strong","summary","sup","table","tbody","td","textarea","tfoot","th","thead","time","tr","ul","var","video"],t=["any-hover","any-pointer","aspect-ratio","color","color-gamut","color-index","device-aspect-ratio","device-height","device-width","display-mode","forced-colors","grid","height","hover","inverted-colors","monochrome","orientation","overflow-block","overflow-inline","pointer","prefers-color-scheme","prefers-contrast","prefers-reduced-motion","prefers-reduced-transparency","resolution","scan","scripting","update","width","min-width","max-width","min-height","max-height"],i=["active","any-link","blank","checked","current","default","defined","dir","disabled","drop","empty","enabled","first","first-child","first-of-type","fullscreen","future","focus","focus-visible","focus-within","has","host","host-context","hover","indeterminate","in-range","invalid","is","lang","last-child","last-of-type","left","link","local-link","not","nth-child","nth-col","nth-last-child","nth-last-col","nth-last-of-type","nth-of-type","only-child","only-of-type","optional","out-of-range","past","placeholder-shown","read-only","read-write","required","right","root","scope","target","target-within","user-invalid","valid","visited","where"],o=["after","backdrop","before","cue","cue-region","first-letter","first-line","grammar-error","marker","part","placeholder","selection","slotted","spelling-error"],r=["align-content","align-items","align-self","animation","animation-delay","animation-direction","animation-duration","animation-fill-mode","animation-iteration-count","animation-name","animation-play-state","animation-timing-function","auto","backface-visibility","background","background-attachment","background-clip","background-color","background-image","background-origin","background-position","background-repeat","background-size","border","border-bottom","border-bottom-color","border-bottom-left-radius","border-bottom-right-radius","border-bottom-style","border-bottom-width","border-collapse","border-color","border-image","border-image-outset","border-image-repeat","border-image-slice","border-image-source","border-image-width","border-left","border-left-color","border-left-style","border-left-width","border-radius","border-right","border-right-color","border-right-style","border-right-width","border-spacing","border-style","border-top","border-top-color","border-top-left-radius","border-top-right-radius","border-top-style","border-top-width","border-width","bottom","box-decoration-break","box-shadow","box-sizing","break-after","break-before","break-inside","caption-side","clear","clip","clip-path","color","column-count","column-fill","column-gap","column-rule","column-rule-color","column-rule-style","column-rule-width","column-span","column-width","columns","content","counter-increment","counter-reset","cursor","direction","display","empty-cells","filter","flex","flex-basis","flex-direction","flex-flow","flex-grow","flex-shrink","flex-wrap","float","font","font-display","font-family","font-feature-settings","font-kerning","font-language-override","font-size","font-size-adjust","font-smoothing","font-stretch","font-style","font-variant","font-variant-ligatures","font-variation-settings","font-weight","height","hyphens","icon","image-orientation","image-rendering","image-resolution","ime-mode","inherit","initial","justify-content","left","letter-spacing","line-height","list-style","list-style-image","list-style-position","list-style-type","margin","margin-bottom","margin-left","margin-right","margin-top","marks","mask","max-height","max-width","min-height","min-width","nav-down","nav-index","nav-left","nav-right","nav-up","none","normal","object-fit","object-position","opacity","order","orphans","outline","outline-color","outline-offset","outline-style","outline-width","overflow","overflow-wrap","overflow-x","overflow-y","padding","padding-bottom","padding-left","padding-right","padding-top","page-break-after","page-break-before","page-break-inside","perspective","perspective-origin","pointer-events","position","quotes","resize","right","src","tab-size","table-layout","text-align","text-align-last","text-decoration","text-decoration-color","text-decoration-line","text-decoration-style","text-indent","text-overflow","text-rendering","text-shadow","text-transform","text-underline-position","top","transform","transform-origin","transform-style","transition","transition-delay","transition-duration","transition-property","transition-timing-function","unicode-bidi","vertical-align","visibility","white-space","widows","width","word-break","word-spacing","word-wrap","z-index"].reverse() +;return a=>{const n=(e=>({IMPORTANT:{className:"meta",begin:"!important"}, +HEXCOLOR:{className:"number",begin:"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})"}, +ATTRIBUTE_SELECTOR_MODE:{className:"selector-attr",begin:/\[/,end:/\]/, +illegal:"$",contains:[e.APOS_STRING_MODE,e.QUOTE_STRING_MODE]} +}))(a),l=o,s=i,d="@[a-z-]+",c={className:"variable", +begin:"(\\$[a-zA-Z-][a-zA-Z0-9_-]*)\\b"};return{name:"SCSS",case_insensitive:!0, +illegal:"[=/|']",contains:[a.C_LINE_COMMENT_MODE,a.C_BLOCK_COMMENT_MODE,{ +className:"selector-id",begin:"#[A-Za-z0-9_-]+",relevance:0},{ +className:"selector-class",begin:"\\.[A-Za-z0-9_-]+",relevance:0 +},n.ATTRIBUTE_SELECTOR_MODE,{className:"selector-tag", +begin:"\\b("+e.join("|")+")\\b",relevance:0},{className:"selector-pseudo", +begin:":("+s.join("|")+")"},{className:"selector-pseudo", +begin:"::("+l.join("|")+")"},c,{begin:/\(/,end:/\)/,contains:[a.CSS_NUMBER_MODE] +},{className:"attribute",begin:"\\b("+r.join("|")+")\\b"},{ +begin:"\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\b" +},{begin:":",end:";", +contains:[c,n.HEXCOLOR,a.CSS_NUMBER_MODE,a.QUOTE_STRING_MODE,a.APOS_STRING_MODE,n.IMPORTANT] +},{begin:"@(page|font-face)",lexemes:d,keywords:"@page @font-face"},{begin:"@", +end:"[{;]",returnBegin:!0,keywords:{$pattern:/[a-z-]+/, +keyword:"and or not only",attribute:t.join(" ")},contains:[{begin:d, +className:"keyword"},{begin:/[a-z-]+(?=:)/,className:"attribute" +},c,a.QUOTE_STRING_MODE,a.APOS_STRING_MODE,n.HEXCOLOR,a.CSS_NUMBER_MODE]}]}} +})()); +hljs.registerLanguage("shell",(()=>{"use strict";return s=>({ +name:"Shell Session",aliases:["console"],contains:[{className:"meta", +begin:/^\s{0,3}[/~\w\d[\]()@-]*[>%$#]/,starts:{end:/[^\\](?=\s*$)/, +subLanguage:"bash"}}]})})()); +hljs.registerLanguage("sql",(()=>{"use strict";function e(e){ +return e?"string"==typeof e?e:e.source:null}function r(...r){ +return r.map((r=>e(r))).join("")}function t(...r){ +return"("+r.map((r=>e(r))).join("|")+")"}return e=>{ +const n=e.COMMENT("--","$"),a=["true","false","unknown"],i=["bigint","binary","blob","boolean","char","character","clob","date","dec","decfloat","decimal","float","int","integer","interval","nchar","nclob","national","numeric","real","row","smallint","time","timestamp","varchar","varying","varbinary"],s=["abs","acos","array_agg","asin","atan","avg","cast","ceil","ceiling","coalesce","corr","cos","cosh","count","covar_pop","covar_samp","cume_dist","dense_rank","deref","element","exp","extract","first_value","floor","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","last_value","lead","listagg","ln","log","log10","lower","max","min","mod","nth_value","ntile","nullif","percent_rank","percentile_cont","percentile_disc","position","position_regex","power","rank","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","row_number","sin","sinh","sqrt","stddev_pop","stddev_samp","substring","substring_regex","sum","tan","tanh","translate","translate_regex","treat","trim","trim_array","unnest","upper","value_of","var_pop","var_samp","width_bucket"],o=["create table","insert into","primary key","foreign key","not null","alter table","add constraint","grouping sets","on overflow","character set","respect nulls","ignore nulls","nulls first","nulls last","depth first","breadth first"],c=s,l=["abs","acos","all","allocate","alter","and","any","are","array","array_agg","array_max_cardinality","as","asensitive","asin","asymmetric","at","atan","atomic","authorization","avg","begin","begin_frame","begin_partition","between","bigint","binary","blob","boolean","both","by","call","called","cardinality","cascaded","case","cast","ceil","ceiling","char","char_length","character","character_length","check","classifier","clob","close","coalesce","collate","collect","column","commit","condition","connect","constraint","contains","convert","copy","corr","corresponding","cos","cosh","count","covar_pop","covar_samp","create","cross","cube","cume_dist","current","current_catalog","current_date","current_default_transform_group","current_path","current_role","current_row","current_schema","current_time","current_timestamp","current_path","current_role","current_transform_group_for_type","current_user","cursor","cycle","date","day","deallocate","dec","decimal","decfloat","declare","default","define","delete","dense_rank","deref","describe","deterministic","disconnect","distinct","double","drop","dynamic","each","element","else","empty","end","end_frame","end_partition","end-exec","equals","escape","every","except","exec","execute","exists","exp","external","extract","false","fetch","filter","first_value","float","floor","for","foreign","frame_row","free","from","full","function","fusion","get","global","grant","group","grouping","groups","having","hold","hour","identity","in","indicator","initial","inner","inout","insensitive","insert","int","integer","intersect","intersection","interval","into","is","join","json_array","json_arrayagg","json_exists","json_object","json_objectagg","json_query","json_table","json_table_primitive","json_value","lag","language","large","last_value","lateral","lead","leading","left","like","like_regex","listagg","ln","local","localtime","localtimestamp","log","log10","lower","match","match_number","match_recognize","matches","max","member","merge","method","min","minute","mod","modifies","module","month","multiset","national","natural","nchar","nclob","new","no","none","normalize","not","nth_value","ntile","null","nullif","numeric","octet_length","occurrences_regex","of","offset","old","omit","on","one","only","open","or","order","out","outer","over","overlaps","overlay","parameter","partition","pattern","per","percent","percent_rank","percentile_cont","percentile_disc","period","portion","position","position_regex","power","precedes","precision","prepare","primary","procedure","ptf","range","rank","reads","real","recursive","ref","references","referencing","regr_avgx","regr_avgy","regr_count","regr_intercept","regr_r2","regr_slope","regr_sxx","regr_sxy","regr_syy","release","result","return","returns","revoke","right","rollback","rollup","row","row_number","rows","running","savepoint","scope","scroll","search","second","seek","select","sensitive","session_user","set","show","similar","sin","sinh","skip","smallint","some","specific","specifictype","sql","sqlexception","sqlstate","sqlwarning","sqrt","start","static","stddev_pop","stddev_samp","submultiset","subset","substring","substring_regex","succeeds","sum","symmetric","system","system_time","system_user","table","tablesample","tan","tanh","then","time","timestamp","timezone_hour","timezone_minute","to","trailing","translate","translate_regex","translation","treat","trigger","trim","trim_array","true","truncate","uescape","union","unique","unknown","unnest","update ","upper","user","using","value","values","value_of","var_pop","var_samp","varbinary","varchar","varying","versioning","when","whenever","where","width_bucket","window","with","within","without","year","add","asc","collation","desc","final","first","last","view"].filter((e=>!s.includes(e))),u={ +begin:r(/\b/,t(...c),/\s*\(/),keywords:{built_in:c}};return{name:"SQL", +case_insensitive:!0,illegal:/[{}]|<\//,keywords:{$pattern:/\b[\w\.]+/, +keyword:((e,{exceptions:r,when:t}={})=>{const n=t +;return r=r||[],e.map((e=>e.match(/\|\d+$/)||r.includes(e)?e:n(e)?e+"|0":e)) +})(l,{when:e=>e.length<3}),literal:a,type:i, +built_in:["current_catalog","current_date","current_default_transform_group","current_path","current_role","current_schema","current_transform_group_for_type","current_user","session_user","system_time","system_user","current_time","localtime","current_timestamp","localtimestamp"] +},contains:[{begin:t(...o),keywords:{$pattern:/[\w\.]+/,keyword:l.concat(o), +literal:a,type:i}},{className:"type", +begin:t("double precision","large object","with timezone","without timezone") +},u,{className:"variable",begin:/@[a-z0-9]+/},{className:"string",variants:[{ +begin:/'/,end:/'/,contains:[{begin:/''/}]}]},{begin:/"/,end:/"/,contains:[{ +begin:/""/}]},e.C_NUMBER_MODE,e.C_BLOCK_COMMENT_MODE,n,{className:"operator", +begin:/[-+*/=%^~]|&&?|\|\|?|!=?|<(?:=>?|<|>)?|>[>=]?/,relevance:0}]}}})()); +hljs.registerLanguage("swift",(()=>{"use strict";function e(e){ +return e?"string"==typeof e?e:e.source:null}function n(e){return a("(?=",e,")")} +function a(...n){return n.map((n=>e(n))).join("")}function t(...n){ +return"("+n.map((n=>e(n))).join("|")+")"} +const i=e=>a(/\b/,e,/\w$/.test(e)?/\b/:/\B/),s=["Protocol","Type"].map(i),u=["init","self"].map(i),c=["Any","Self"],r=["associatedtype","async","await",/as\?/,/as!/,"as","break","case","catch","class","continue","convenience","default","defer","deinit","didSet","do","dynamic","else","enum","extension","fallthrough",/fileprivate\(set\)/,"fileprivate","final","for","func","get","guard","if","import","indirect","infix",/init\?/,/init!/,"inout",/internal\(set\)/,"internal","in","is","lazy","let","mutating","nonmutating",/open\(set\)/,"open","operator","optional","override","postfix","precedencegroup","prefix",/private\(set\)/,"private","protocol",/public\(set\)/,"public","repeat","required","rethrows","return","set","some","static","struct","subscript","super","switch","throws","throw",/try\?/,/try!/,"try","typealias",/unowned\(safe\)/,/unowned\(unsafe\)/,"unowned","var","weak","where","while","willSet"],o=["false","nil","true"],l=["assignment","associativity","higherThan","left","lowerThan","none","right"],m=["#colorLiteral","#column","#dsohandle","#else","#elseif","#endif","#error","#file","#fileID","#fileLiteral","#filePath","#function","#if","#imageLiteral","#keyPath","#line","#selector","#sourceLocation","#warn_unqualified_access","#warning"],d=["abs","all","any","assert","assertionFailure","debugPrint","dump","fatalError","getVaList","isKnownUniquelyReferenced","max","min","numericCast","pointwiseMax","pointwiseMin","precondition","preconditionFailure","print","readLine","repeatElement","sequence","stride","swap","swift_unboxFromSwiftValueWithType","transcode","type","unsafeBitCast","unsafeDowncast","withExtendedLifetime","withUnsafeMutablePointer","withUnsafePointer","withVaList","withoutActuallyEscaping","zip"],p=t(/[/=\-+!*%<>&|^~?]/,/[\u00A1-\u00A7]/,/[\u00A9\u00AB]/,/[\u00AC\u00AE]/,/[\u00B0\u00B1]/,/[\u00B6\u00BB\u00BF\u00D7\u00F7]/,/[\u2016-\u2017]/,/[\u2020-\u2027]/,/[\u2030-\u203E]/,/[\u2041-\u2053]/,/[\u2055-\u205E]/,/[\u2190-\u23FF]/,/[\u2500-\u2775]/,/[\u2794-\u2BFF]/,/[\u2E00-\u2E7F]/,/[\u3001-\u3003]/,/[\u3008-\u3020]/,/[\u3030]/),F=t(p,/[\u0300-\u036F]/,/[\u1DC0-\u1DFF]/,/[\u20D0-\u20FF]/,/[\uFE00-\uFE0F]/,/[\uFE20-\uFE2F]/),b=a(p,F,"*"),h=t(/[a-zA-Z_]/,/[\u00A8\u00AA\u00AD\u00AF\u00B2-\u00B5\u00B7-\u00BA]/,/[\u00BC-\u00BE\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u00FF]/,/[\u0100-\u02FF\u0370-\u167F\u1681-\u180D\u180F-\u1DBF]/,/[\u1E00-\u1FFF]/,/[\u200B-\u200D\u202A-\u202E\u203F-\u2040\u2054\u2060-\u206F]/,/[\u2070-\u20CF\u2100-\u218F\u2460-\u24FF\u2776-\u2793]/,/[\u2C00-\u2DFF\u2E80-\u2FFF]/,/[\u3004-\u3007\u3021-\u302F\u3031-\u303F\u3040-\uD7FF]/,/[\uF900-\uFD3D\uFD40-\uFDCF\uFDF0-\uFE1F\uFE30-\uFE44]/,/[\uFE47-\uFEFE\uFF00-\uFFFD]/),f=t(h,/\d/,/[\u0300-\u036F\u1DC0-\u1DFF\u20D0-\u20FF\uFE20-\uFE2F]/),w=a(h,f,"*"),y=a(/[A-Z]/,f,"*"),g=["autoclosure",a(/convention\(/,t("swift","block","c"),/\)/),"discardableResult","dynamicCallable","dynamicMemberLookup","escaping","frozen","GKInspectable","IBAction","IBDesignable","IBInspectable","IBOutlet","IBSegueAction","inlinable","main","nonobjc","NSApplicationMain","NSCopying","NSManaged",a(/objc\(/,w,/\)/),"objc","objcMembers","propertyWrapper","requires_stored_property_inits","testable","UIApplicationMain","unknown","usableFromInline"],E=["iOS","iOSApplicationExtension","macOS","macOSApplicationExtension","macCatalyst","macCatalystApplicationExtension","watchOS","watchOSApplicationExtension","tvOS","tvOSApplicationExtension","swift"] +;return e=>{const p={match:/\s+/,relevance:0},h=e.COMMENT("/\\*","\\*/",{ +contains:["self"]}),v=[e.C_LINE_COMMENT_MODE,h],N={className:"keyword", +begin:a(/\./,n(t(...s,...u))),end:t(...s,...u),excludeBegin:!0},A={ +match:a(/\./,t(...r)),relevance:0 +},C=r.filter((e=>"string"==typeof e)).concat(["_|0"]),_={variants:[{ +className:"keyword", +match:t(...r.filter((e=>"string"!=typeof e)).concat(c).map(i),...u)}]},D={ +$pattern:t(/\b\w+/,/#\w+/),keyword:C.concat(m),literal:o},B=[N,A,_],k=[{ +match:a(/\./,t(...d)),relevance:0},{className:"built_in", +match:a(/\b/,t(...d),/(?=\()/)}],M={match:/->/,relevance:0},S=[M,{ +className:"operator",relevance:0,variants:[{match:b},{match:`\\.(\\.|${F})+`}] +}],x="([0-9a-fA-F]_*)+",I={className:"number",relevance:0,variants:[{ +match:"\\b(([0-9]_*)+)(\\.(([0-9]_*)+))?([eE][+-]?(([0-9]_*)+))?\\b"},{ +match:`\\b0x(${x})(\\.(${x}))?([pP][+-]?(([0-9]_*)+))?\\b`},{ +match:/\b0o([0-7]_*)+\b/},{match:/\b0b([01]_*)+\b/}]},O=(e="")=>({ +className:"subst",variants:[{match:a(/\\/,e,/[0\\tnr"']/)},{ +match:a(/\\/,e,/u\{[0-9a-fA-F]{1,8}\}/)}]}),T=(e="")=>({className:"subst", +match:a(/\\/,e,/[\t ]*(?:[\r\n]|\r\n)/)}),L=(e="")=>({className:"subst", +label:"interpol",begin:a(/\\/,e,/\(/),end:/\)/}),P=(e="")=>({begin:a(e,/"""/), +end:a(/"""/,e),contains:[O(e),T(e),L(e)]}),$=(e="")=>({begin:a(e,/"/), +end:a(/"/,e),contains:[O(e),L(e)]}),K={className:"string", +variants:[P(),P("#"),P("##"),P("###"),$(),$("#"),$("##"),$("###")]},j={ +match:a(/`/,w,/`/)},z=[j,{className:"variable",match:/\$\d+/},{ +className:"variable",match:`\\$${f}+`}],q=[{match:/(@|#)available/, +className:"keyword",starts:{contains:[{begin:/\(/,end:/\)/,keywords:E, +contains:[...S,I,K]}]}},{className:"keyword",match:a(/@/,t(...g))},{ +className:"meta",match:a(/@/,w)}],U={match:n(/\b[A-Z]/),relevance:0,contains:[{ +className:"type", +match:a(/(AV|CA|CF|CG|CI|CL|CM|CN|CT|MK|MP|MTK|MTL|NS|SCN|SK|UI|WK|XC)/,f,"+") +},{className:"type",match:y,relevance:0},{match:/[?!]+/,relevance:0},{ +match:/\.\.\./,relevance:0},{match:a(/\s+&\s+/,n(y)),relevance:0}]},Z={ +begin://,keywords:D,contains:[...v,...B,...q,M,U]};U.contains.push(Z) +;const G={begin:/\(/,end:/\)/,relevance:0,keywords:D,contains:["self",{ +match:a(w,/\s*:/),keywords:"_|0",relevance:0 +},...v,...B,...k,...S,I,K,...z,...q,U]},H={beginKeywords:"func",contains:[{ +className:"title",match:t(j.match,w,b),endsParent:!0,relevance:0},p]},R={ +begin://,contains:[...v,U]},V={begin:/\(/,end:/\)/,keywords:D, +contains:[{begin:t(n(a(w,/\s*:/)),n(a(w,/\s+/,w,/\s*:/))),end:/:/,relevance:0, +contains:[{className:"keyword",match:/\b_\b/},{className:"params",match:w}] +},...v,...B,...S,I,K,...q,U,G],endsParent:!0,illegal:/["']/},W={ +className:"function",match:n(/\bfunc\b/),contains:[H,R,V,p],illegal:[/\[/,/%/] +},X={className:"function",match:/\b(subscript|init[?!]?)\s*(?=[<(])/,keywords:{ +keyword:"subscript init init? init!",$pattern:/\w+[?!]?/},contains:[R,V,p], +illegal:/\[|%/},J={beginKeywords:"operator",end:e.MATCH_NOTHING_RE,contains:[{ +className:"title",match:b,endsParent:!0,relevance:0}]},Q={ +beginKeywords:"precedencegroup",end:e.MATCH_NOTHING_RE,contains:[{ +className:"title",match:y,relevance:0},{begin:/{/,end:/}/,relevance:0, +endsParent:!0,keywords:[...l,...o],contains:[U]}]};for(const e of K.variants){ +const n=e.contains.find((e=>"interpol"===e.label));n.keywords=D +;const a=[...B,...k,...S,I,K,...z];n.contains=[...a,{begin:/\(/,end:/\)/, +contains:["self",...a]}]}return{name:"Swift",keywords:D,contains:[...v,W,X,{ +className:"class",beginKeywords:"struct protocol class extension enum", +end:"\\{",excludeEnd:!0,keywords:D,contains:[e.inherit(e.TITLE_MODE,{ +begin:/[A-Za-z$_][\u00C0-\u02B80-9A-Za-z$_]*/}),...B]},J,Q,{ +beginKeywords:"import",end:/$/,contains:[...v],relevance:0 +},...B,...k,...S,I,K,...z,...q,U,G]}}})()); +hljs.registerLanguage("typescript",(()=>{"use strict" +;const e="[A-Za-z$_][0-9A-Za-z$_]*",n=["as","in","of","if","for","while","finally","var","new","function","do","return","void","else","break","catch","instanceof","with","throw","case","default","try","switch","continue","typeof","delete","let","yield","const","class","debugger","async","await","static","import","from","export","extends"],a=["true","false","null","undefined","NaN","Infinity"],s=[].concat(["setInterval","setTimeout","clearInterval","clearTimeout","require","exports","eval","isFinite","isNaN","parseFloat","parseInt","decodeURI","decodeURIComponent","encodeURI","encodeURIComponent","escape","unescape"],["arguments","this","super","console","window","document","localStorage","module","global"],["Intl","DataView","Number","Math","Date","String","RegExp","Object","Function","Boolean","Error","Symbol","Set","Map","WeakSet","WeakMap","Proxy","Reflect","JSON","Promise","Float64Array","Int16Array","Int32Array","Int8Array","Uint16Array","Uint32Array","Float32Array","Array","Uint8Array","Uint8ClampedArray","ArrayBuffer","BigInt64Array","BigUint64Array","BigInt"],["EvalError","InternalError","RangeError","ReferenceError","SyntaxError","TypeError","URIError"]) +;function t(e){return r("(?=",e,")")}function r(...e){return e.map((e=>{ +return(n=e)?"string"==typeof n?n:n.source:null;var n})).join("")}return i=>{ +const c={$pattern:e, +keyword:n.concat(["type","namespace","typedef","interface","public","private","protected","implements","declare","abstract","readonly"]), +literal:a, +built_in:s.concat(["any","void","number","boolean","string","object","never","enum"]) +},o={className:"meta",begin:"@[A-Za-z$_][0-9A-Za-z$_]*"},l=(e,n,a)=>{ +const s=e.contains.findIndex((e=>e.label===n)) +;if(-1===s)throw Error("can not find mode to replace");e.contains.splice(s,1,a) +},b=(i=>{const c=e,o={begin:/<[A-Za-z0-9\\._:-]+/, +end:/\/[A-Za-z0-9\\._:-]+>|\/>/,isTrulyOpeningTag:(e,n)=>{ +const a=e[0].length+e.index,s=e.input[a];"<"!==s?">"===s&&(((e,{after:n})=>{ +const a="", +returnBegin:!0,end:"\\s*=>",contains:[{className:"params",variants:[{ +begin:i.UNDERSCORE_IDENT_RE,relevance:0},{className:null,begin:/\(\s*\)/,skip:!0 +},{begin:/\(/,end:/\)/,excludeBegin:!0,excludeEnd:!0,keywords:l,contains:f}]}] +},{begin:/,/,relevance:0},{className:"",begin:/\s/,end:/\s*/,skip:!0},{ +variants:[{begin:"<>",end:""},{begin:o.begin,"on:begin":o.isTrulyOpeningTag, +end:o.end}],subLanguage:"xml",contains:[{begin:o.begin,end:o.end,skip:!0, +contains:["self"]}]}],relevance:0},{className:"function", +beginKeywords:"function",end:/[{;]/,excludeEnd:!0,keywords:l, +contains:["self",i.inherit(i.TITLE_MODE,{begin:c}),A],illegal:/%/},{ +beginKeywords:"while if switch catch for"},{className:"function", +begin:i.UNDERSCORE_IDENT_RE+"\\([^()]*(\\([^()]*(\\([^()]*\\)[^()]*)*\\)[^()]*)*\\)\\s*\\{", +returnBegin:!0,contains:[A,i.inherit(i.TITLE_MODE,{begin:c})]},{variants:[{ +begin:"\\."+c},{begin:"\\$"+c}],relevance:0},{className:"class", +beginKeywords:"class",end:/[{;=]/,excludeEnd:!0,illegal:/[:"[\]]/,contains:[{ +beginKeywords:"extends"},i.UNDERSCORE_TITLE_MODE]},{begin:/\b(?=constructor)/, +end:/[{;]/,excludeEnd:!0,contains:[i.inherit(i.TITLE_MODE,{begin:c}),"self",A] +},{begin:"(get|set)\\s+(?="+c+"\\()",end:/\{/,keywords:"get set", +contains:[i.inherit(i.TITLE_MODE,{begin:c}),{begin:/\(\)/},A]},{begin:/\$[(.]/}] +}})(i) +;return Object.assign(b.keywords,c),b.exports.PARAMS_CONTAINS.push(o),b.contains=b.contains.concat([o,{ +beginKeywords:"namespace",end:/\{/,excludeEnd:!0},{beginKeywords:"interface", +end:/\{/,excludeEnd:!0,keywords:"interface extends" +}]),l(b,"shebang",i.SHEBANG()),l(b,"use_strict",{className:"meta",relevance:10, +begin:/^\s*['"]use strict['"]/ +}),b.contains.find((e=>"function"===e.className)).relevance=0,Object.assign(b,{ +name:"TypeScript",aliases:["ts","tsx"]}),b}})()); +hljs.registerLanguage("vbnet",(()=>{"use strict";function e(e){ +return e?"string"==typeof e?e:e.source:null}function n(...n){ +return n.map((n=>e(n))).join("")}function t(...n){ +return"("+n.map((n=>e(n))).join("|")+")"}return e=>{ +const a=/\d{1,2}\/\d{1,2}\/\d{4}/,i=/\d{4}-\d{1,2}-\d{1,2}/,s=/(\d|1[012])(:\d+){0,2} *(AM|PM)/,r=/\d{1,2}(:\d{1,2}){1,2}/,o={ +className:"literal",variants:[{begin:n(/# */,t(i,a),/ *#/)},{ +begin:n(/# */,r,/ *#/)},{begin:n(/# */,s,/ *#/)},{ +begin:n(/# */,t(i,a),/ +/,t(s,r),/ *#/)}]},l=e.COMMENT(/'''/,/$/,{contains:[{ +className:"doctag",begin:/<\/?/,end:/>/}]}),c=e.COMMENT(null,/$/,{variants:[{ +begin:/'/},{begin:/([\t ]|^)REM(?=\s)/}]});return{name:"Visual Basic .NET", +aliases:["vb"],case_insensitive:!0,classNameAliases:{label:"symbol"},keywords:{ +keyword:"addhandler alias aggregate ansi as async assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into iterator join key let lib loop me mid module mustinherit mustoverride mybase myclass namespace narrowing new next notinheritable notoverridable of off on operator option optional order overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly yield", +built_in:"addressof and andalso await directcast gettype getxmlnamespace is isfalse isnot istrue like mod nameof new not or orelse trycast typeof xor cbool cbyte cchar cdate cdbl cdec cint clng cobj csbyte cshort csng cstr cuint culng cushort", +type:"boolean byte char date decimal double integer long object sbyte short single string uinteger ulong ushort", +literal:"true false nothing"}, +illegal:"//|\\{|\\}|endif|gosub|variant|wend|^\\$ ",contains:[{ +className:"string",begin:/"(""|[^/n])"C\b/},{className:"string",begin:/"/, +end:/"/,illegal:/\n/,contains:[{begin:/""/}]},o,{className:"number",relevance:0, +variants:[{begin:/\b\d[\d_]*((\.[\d_]+(E[+-]?[\d_]+)?)|(E[+-]?[\d_]+))[RFD@!#]?/ +},{begin:/\b\d[\d_]*((U?[SIL])|[%&])?/},{begin:/&H[\dA-F_]+((U?[SIL])|[%&])?/},{ +begin:/&O[0-7_]+((U?[SIL])|[%&])?/},{begin:/&B[01_]+((U?[SIL])|[%&])?/}]},{ +className:"label",begin:/^\w+:/},l,c,{className:"meta", +begin:/[\t ]*#(const|disable|else|elseif|enable|end|externalsource|if|region)\b/, +end:/$/,keywords:{ +"meta-keyword":"const disable else elseif enable end externalsource if region then" +},contains:[c]}]}}})()); +hljs.registerLanguage("yaml",(()=>{"use strict";return e=>{ +var n="true false yes no null",a="[\\w#;/?:@&=+$,.~*'()[\\]]+",s={ +className:"string",relevance:0,variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/ +},{begin:/\S+/}],contains:[e.BACKSLASH_ESCAPE,{className:"template-variable", +variants:[{begin:/\{\{/,end:/\}\}/},{begin:/%\{/,end:/\}/}]}]},i=e.inherit(s,{ +variants:[{begin:/'/,end:/'/},{begin:/"/,end:/"/},{begin:/[^\s,{}[\]]+/}]}),l={ +end:",",endsWithParent:!0,excludeEnd:!0,keywords:n,relevance:0},t={begin:/\{/, +end:/\}/,contains:[l],illegal:"\\n",relevance:0},g={begin:"\\[",end:"\\]", +contains:[l],illegal:"\\n",relevance:0},b=[{className:"attr",variants:[{ +begin:"\\w[\\w :\\/.-]*:(?=[ \t]|$)"},{begin:'"\\w[\\w :\\/.-]*":(?=[ \t]|$)'},{ +begin:"'\\w[\\w :\\/.-]*':(?=[ \t]|$)"}]},{className:"meta",begin:"^---\\s*$", +relevance:10},{className:"string", +begin:"[\\|>]([1-9]?[+-])?[ ]*\\n( +)[^ ][^\\n]*\\n(\\2[^\\n]+\\n?)*"},{ +begin:"<%[%=-]?",end:"[%-]?%>",subLanguage:"ruby",excludeBegin:!0,excludeEnd:!0, +relevance:0},{className:"type",begin:"!\\w+!"+a},{className:"type", +begin:"!<"+a+">"},{className:"type",begin:"!"+a},{className:"type",begin:"!!"+a +},{className:"meta",begin:"&"+e.UNDERSCORE_IDENT_RE+"$"},{className:"meta", +begin:"\\*"+e.UNDERSCORE_IDENT_RE+"$"},{className:"bullet",begin:"-(?=[ ]|$)", +relevance:0},e.HASH_COMMENT_MODE,{beginKeywords:n,keywords:{literal:n}},{ +className:"number", +begin:"\\b[0-9]{4}(-[0-9][0-9]){0,2}([Tt \\t][0-9][0-9]?(:[0-9][0-9]){2})?(\\.[0-9]*)?([ \\t])*(Z|[-+][0-9][0-9]?(:[0-9][0-9])?)?\\b" +},{className:"number",begin:e.C_NUMBER_RE+"\\b",relevance:0},t,g,s],r=[...b] +;return r.pop(),r.push(i),l.contains=r,{name:"YAML",case_insensitive:!0, +aliases:["yml"],contains:b}}})()); \ No newline at end of file diff --git a/htmlReport/js/highlightjs-line-numbers.min.js b/htmlReport/js/highlightjs-line-numbers.min.js new file mode 100644 index 0000000..8548576 --- /dev/null +++ b/htmlReport/js/highlightjs-line-numbers.min.js @@ -0,0 +1,24 @@ +/* +The MIT License (MIT) + +Copyright (c) 2017 Yauheni Pakala + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + */ +!function(r,o){"use strict";var e,i="hljs-ln",l="hljs-ln-line",h="hljs-ln-code",s="hljs-ln-numbers",c="hljs-ln-n",m="data-line-number",a=/\r\n|\r|\n/g;function u(e){for(var n=e.toString(),t=e.anchorNode;"TD"!==t.nodeName;)t=t.parentNode;for(var r=e.focusNode;"TD"!==r.nodeName;)r=r.parentNode;var o=parseInt(t.dataset.lineNumber),a=parseInt(r.dataset.lineNumber);if(o==a)return n;var i,l=t.textContent,s=r.textContent;for(a
{6}',[l,s,c,m,h,o+n.startFrom,0{1}',[i,r])}return e}(e.innerHTML,o)}function v(e){var n=e.className;if(/hljs-/.test(n)){for(var t=g(e.innerHTML),r=0,o="";r{1}
\n',[n,0 + + + Coverage Report > cn.edu.ecnu.stu.bookstore + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookstoreApplication + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-1/index_SORT_BY_BLOCK.html b/htmlReport/ns-1/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..8fe41dd --- /dev/null +++ b/htmlReport/ns-1/index_SORT_BY_BLOCK.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookstoreApplication + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-1/index_SORT_BY_BLOCK_DESC.html b/htmlReport/ns-1/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..5ecc15d --- /dev/null +++ b/htmlReport/ns-1/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookstoreApplication + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-1/index_SORT_BY_CLASS.html b/htmlReport/ns-1/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..fa6db51 --- /dev/null +++ b/htmlReport/ns-1/index_SORT_BY_CLASS.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookstoreApplication + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-1/index_SORT_BY_CLASS_DESC.html b/htmlReport/ns-1/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..a965fcd --- /dev/null +++ b/htmlReport/ns-1/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookstoreApplication + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-1/index_SORT_BY_LINE.html b/htmlReport/ns-1/index_SORT_BY_LINE.html new file mode 100644 index 0000000..56d9e11 --- /dev/null +++ b/htmlReport/ns-1/index_SORT_BY_LINE.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookstoreApplication + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-1/index_SORT_BY_LINE_DESC.html b/htmlReport/ns-1/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..ec1e6b5 --- /dev/null +++ b/htmlReport/ns-1/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookstoreApplication + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-1/index_SORT_BY_METHOD.html b/htmlReport/ns-1/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..1f81025 --- /dev/null +++ b/htmlReport/ns-1/index_SORT_BY_METHOD.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookstoreApplication + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-1/index_SORT_BY_METHOD_DESC.html b/htmlReport/ns-1/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..999c8d5 --- /dev/null +++ b/htmlReport/ns-1/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookstoreApplication + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-1/index_SORT_BY_NAME_DESC.html b/htmlReport/ns-1/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..eff310f --- /dev/null +++ b/htmlReport/ns-1/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookstoreApplication + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-1/sources/source-1.html b/htmlReport/ns-1/sources/source-1.html new file mode 100644 index 0000000..374f40e --- /dev/null +++ b/htmlReport/ns-1/sources/source-1.html @@ -0,0 +1,126 @@ + + + + + + + Coverage Report > BookstoreApplication + + + + + + +
+ + +

Coverage Summary for Class: BookstoreApplication (cn.edu.ecnu.stu.bookstore)

+ + + + + + + + + + + + + + + + + + + + + +
Class + Method, % + + Line, % +
BookstoreApplication + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
BookstoreApplication$$EnhancerBySpringCGLIB$$b94f3632
Total + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore;
+ 
+ import org.springframework.boot.SpringApplication;
+ import org.springframework.boot.autoconfigure.SpringBootApplication;
+ 
+ @SpringBootApplication
+ public class BookstoreApplication {
+ 
+     public static void main(String[] args) {
+         SpringApplication.run(BookstoreApplication.class, args);
+     }
+ 
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-2/index.html b/htmlReport/ns-2/index.html new file mode 100644 index 0000000..7911581 --- /dev/null +++ b/htmlReport/ns-2/index.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.component + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.component

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AppException + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (3/3) + +
Result + + 100% + + + (1/1) + + + + 87.5% + + + (7/8) + + + + 90.9% + + + (10/11) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-2/index_SORT_BY_BLOCK.html b/htmlReport/ns-2/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..d9e0433 --- /dev/null +++ b/htmlReport/ns-2/index_SORT_BY_BLOCK.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.component + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.component

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AppException + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (3/3) + +
Result + + 100% + + + (1/1) + + + + 87.5% + + + (7/8) + + + + 90.9% + + + (10/11) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-2/index_SORT_BY_BLOCK_DESC.html b/htmlReport/ns-2/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..4c52c72 --- /dev/null +++ b/htmlReport/ns-2/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.component + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.component

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
Result + + 100% + + + (1/1) + + + + 87.5% + + + (7/8) + + + + 90.9% + + + (10/11) + +
AppException + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (3/3) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-2/index_SORT_BY_CLASS.html b/htmlReport/ns-2/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..57c2dbb --- /dev/null +++ b/htmlReport/ns-2/index_SORT_BY_CLASS.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.component + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.component

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AppException + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (3/3) + +
Result + + 100% + + + (1/1) + + + + 87.5% + + + (7/8) + + + + 90.9% + + + (10/11) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-2/index_SORT_BY_CLASS_DESC.html b/htmlReport/ns-2/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..639bedb --- /dev/null +++ b/htmlReport/ns-2/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.component + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.component

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
Result + + 100% + + + (1/1) + + + + 87.5% + + + (7/8) + + + + 90.9% + + + (10/11) + +
AppException + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (3/3) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-2/index_SORT_BY_LINE.html b/htmlReport/ns-2/index_SORT_BY_LINE.html new file mode 100644 index 0000000..69f19d2 --- /dev/null +++ b/htmlReport/ns-2/index_SORT_BY_LINE.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.component + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.component

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
Result + + 100% + + + (1/1) + + + + 87.5% + + + (7/8) + + + + 90.9% + + + (10/11) + +
AppException + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (3/3) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-2/index_SORT_BY_LINE_DESC.html b/htmlReport/ns-2/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..11a2bf6 --- /dev/null +++ b/htmlReport/ns-2/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.component + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.component

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AppException + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (3/3) + +
Result + + 100% + + + (1/1) + + + + 87.5% + + + (7/8) + + + + 90.9% + + + (10/11) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-2/index_SORT_BY_METHOD.html b/htmlReport/ns-2/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..69b299c --- /dev/null +++ b/htmlReport/ns-2/index_SORT_BY_METHOD.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.component + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.component

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
Result + + 100% + + + (1/1) + + + + 87.5% + + + (7/8) + + + + 90.9% + + + (10/11) + +
AppException + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (3/3) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-2/index_SORT_BY_METHOD_DESC.html b/htmlReport/ns-2/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..c63095e --- /dev/null +++ b/htmlReport/ns-2/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.component + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.component

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AppException + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (3/3) + +
Result + + 100% + + + (1/1) + + + + 87.5% + + + (7/8) + + + + 90.9% + + + (10/11) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-2/index_SORT_BY_NAME_DESC.html b/htmlReport/ns-2/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..d830b6e --- /dev/null +++ b/htmlReport/ns-2/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.component + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.component

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.component + + 100% + + + (2/2) + + + + 90.9% + + + (10/11) + + + + 92.9% + + + (13/14) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
Result + + 100% + + + (1/1) + + + + 87.5% + + + (7/8) + + + + 90.9% + + + (10/11) + +
AppException + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (3/3) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-2/sources/source-1.html b/htmlReport/ns-2/sources/source-1.html new file mode 100644 index 0000000..eb2798e --- /dev/null +++ b/htmlReport/ns-2/sources/source-1.html @@ -0,0 +1,123 @@ + + + + + + + Coverage Report > AppException + + + + + + +
+ + +

Coverage Summary for Class: AppException (cn.edu.ecnu.stu.bookstore.component)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
AppException + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (3/3) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.component;
+ 
+ import lombok.AllArgsConstructor;
+ 
+ @AllArgsConstructor
+ public class AppException extends RuntimeException{
+ 
+     private String code;
+ 
+     private String message;
+ 
+     public String getCode() {
+         return code;
+     }
+ 
+     @Override
+     public String getMessage() {
+         return message;
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-2/sources/source-2.html b/htmlReport/ns-2/sources/source-2.html new file mode 100644 index 0000000..9937947 --- /dev/null +++ b/htmlReport/ns-2/sources/source-2.html @@ -0,0 +1,136 @@ + + + + + + + Coverage Report > Result + + + + + + +
+ + +

Coverage Summary for Class: Result (cn.edu.ecnu.stu.bookstore.component)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
Result + + 100% + + + (1/1) + + + + 87.5% + + + (7/8) + + + + 90.9% + + + (10/11) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.component;
+ 
+ import lombok.Data;
+ 
+ @Data
+ public class Result {
+ 
+     private Object data;
+ 
+     private String message;
+ 
+     private String code;
+ 
+     public Result(String code, String message, Object data) {
+         this.code = code;
+         this.message = message;
+         this.data = data;
+     }
+ 
+     public static Result success(Object data) {
+         return new Result(Constants.SUCCESS, "ok", data);
+     }
+ 
+     public static Result error(String code, String message) {
+         return new Result(code, message, null);
+     }
+ 
+     public static Result success() {
+         return new Result(Constants.SUCCESS, Constants.SUCCESS_MESSAGE, null);
+     }
+ 
+ 
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-2/sources/source-3.html b/htmlReport/ns-2/sources/source-3.html new file mode 100644 index 0000000..5aa6f18 --- /dev/null +++ b/htmlReport/ns-2/sources/source-3.html @@ -0,0 +1,101 @@ + + + + + + + Coverage Report > Constants + + + + + + +
+ + +

Coverage Summary for Class: Constants (cn.edu.ecnu.stu.bookstore.component)

+ + + + + + + + + +
Class
Constants
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.component;
+ 
+ public interface Constants {
+ 
+     String SYSTEM_ERROR = "500";
+     String CLIENT_ERROR = "400";
+     String SUCCESS = "200";
+     String AUTHENTICATION_ERROR = "401";
+     String UNAUTHORIZED_ERROR = "403";
+ 
+     String REGISTER_ERROR_MESSAGE = "ûѴ";
+     String PARAMETER_ERROR_MESSAGE = "Ƿ";
+     String SUCCESS_MESSAGE = "ok";
+     String AUTHENTICATION_ERROR_MESSAGE = "ûδ֤tokenڣȵ¼";
+     String PASSWORD_ERROR = "ûڻ";
+     String USER_ID_ERROR = "û";
+     String AUTHORITY_ERROR = "ûȨ޲";
+     String STORE_NON_EXIST_ERROR = "̲";
+     String PICTURE_ERROR = "ͼƬʧ";
+     String BOOK_ERROR = "̲ڻ鼮";
+     String STOCK_LEVEL_ERROR = "治";
+ 
+     String STORE_ID_ERROR = "IDѴ";
+ 
+     String ORDER_IS_NULL_ERROR = "Ϊ";
+ 
+     String BALANCE_ERROR = "";
+ 
+     String URL_PREFIX = "http://127.0.0.1:8080";
+     String ORDER_NON_EXIST_ERROR = "";
+     String ORDER_HAS_PAID_ERROR = "֧";
+ 
+     String STATUS_ERROR = "״̬";
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-3/index.html b/htmlReport/ns-3/index.html new file mode 100644 index 0000000..2f29559 --- /dev/null +++ b/htmlReport/ns-3/index.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.config + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.config

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
RabbitMqConfig + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (6/6) + +
RedisConfig + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (7/7) + +
SecurityConfig + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-3/index_SORT_BY_BLOCK.html b/htmlReport/ns-3/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..0aaf219 --- /dev/null +++ b/htmlReport/ns-3/index_SORT_BY_BLOCK.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.config + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.config

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
RabbitMqConfig + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (6/6) + +
RedisConfig + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (7/7) + +
SecurityConfig + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-3/index_SORT_BY_BLOCK_DESC.html b/htmlReport/ns-3/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..02dc7df --- /dev/null +++ b/htmlReport/ns-3/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.config + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.config

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
SecurityConfig + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 100% + + + (12/12) + +
RedisConfig + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (7/7) + +
RabbitMqConfig + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (6/6) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-3/index_SORT_BY_CLASS.html b/htmlReport/ns-3/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..4bd9dd9 --- /dev/null +++ b/htmlReport/ns-3/index_SORT_BY_CLASS.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.config + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.config

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
RabbitMqConfig + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (6/6) + +
RedisConfig + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (7/7) + +
SecurityConfig + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-3/index_SORT_BY_CLASS_DESC.html b/htmlReport/ns-3/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..6cae9f2 --- /dev/null +++ b/htmlReport/ns-3/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.config + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.config

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
SecurityConfig + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 100% + + + (12/12) + +
RedisConfig + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (7/7) + +
RabbitMqConfig + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (6/6) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-3/index_SORT_BY_LINE.html b/htmlReport/ns-3/index_SORT_BY_LINE.html new file mode 100644 index 0000000..4fe1c15 --- /dev/null +++ b/htmlReport/ns-3/index_SORT_BY_LINE.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.config + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.config

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
RabbitMqConfig + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (6/6) + +
RedisConfig + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (7/7) + +
SecurityConfig + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-3/index_SORT_BY_LINE_DESC.html b/htmlReport/ns-3/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..fa1621d --- /dev/null +++ b/htmlReport/ns-3/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.config + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.config

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
SecurityConfig + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 100% + + + (12/12) + +
RedisConfig + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (7/7) + +
RabbitMqConfig + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (6/6) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-3/index_SORT_BY_METHOD.html b/htmlReport/ns-3/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..11afe59 --- /dev/null +++ b/htmlReport/ns-3/index_SORT_BY_METHOD.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.config + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.config

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
RabbitMqConfig + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (6/6) + +
RedisConfig + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (7/7) + +
SecurityConfig + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-3/index_SORT_BY_METHOD_DESC.html b/htmlReport/ns-3/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..e66312f --- /dev/null +++ b/htmlReport/ns-3/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.config + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.config

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
SecurityConfig + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 100% + + + (12/12) + +
RedisConfig + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (7/7) + +
RabbitMqConfig + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (6/6) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-3/index_SORT_BY_NAME_DESC.html b/htmlReport/ns-3/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..816a69d --- /dev/null +++ b/htmlReport/ns-3/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.config + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.config

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.config + + 100% + + + (3/3) + + + + 100% + + + (11/11) + + + + 100% + + + (25/25) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
SecurityConfig + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 100% + + + (12/12) + +
RedisConfig + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (7/7) + +
RabbitMqConfig + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (6/6) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-3/sources/source-1.html b/htmlReport/ns-3/sources/source-1.html new file mode 100644 index 0000000..6af4d4f --- /dev/null +++ b/htmlReport/ns-3/sources/source-1.html @@ -0,0 +1,156 @@ + + + + + + + Coverage Report > RabbitMqConfig + + + + + + +
+ + +

Coverage Summary for Class: RabbitMqConfig (cn.edu.ecnu.stu.bookstore.config)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class + Method, % + + Line, % +
RabbitMqConfig + + 100% + + + (4/4) + + + + 100% + + + (6/6) + +
RabbitMqConfig$$EnhancerBySpringCGLIB$$296aa6ca
RabbitMqConfig$$EnhancerBySpringCGLIB$$296aa6ca$$FastClassBySpringCGLIB$$4b1a5330
RabbitMqConfig$$FastClassBySpringCGLIB$$3710fc4e
Total + + 100% + + + (4/4) + + + + 100% + + + (6/6) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.config;
+ 
+ import org.springframework.amqp.core.*;
+ import org.springframework.context.annotation.Bean;
+ import org.springframework.context.annotation.Configuration;
+ 
+ import java.util.HashMap;
+ import java.util.Map;
+ 
+ @Configuration
+ public class RabbitMqConfig {
+ 
+     public static final String EXPIRED_ORDER_EXCHANGE = "exchange.expire.order";
+ 
+     public static final String EXPIRED_ORDER_QUEUE = "queue.expire.order";
+ 
+     public static final String EXPIRED_ORDER_ROUTING_KEY = "routingKey.expire.order";
+ 
+     public static final int ORDER_EXPIRE_TIME = 1000 * 60 * 15;
+ 
+     @Bean
+     public Queue expiredOrderQueue() {
+         return new Queue(EXPIRED_ORDER_QUEUE, true);
+     }
+ 
+     @Bean
+     public CustomExchange expiredOrderExchange() {
+         Map<String,Object> map = new HashMap<>();
+         map.put("x-delayed-type","direct");
+         return new CustomExchange(EXPIRED_ORDER_EXCHANGE, "x-delayed-message", true, false, map);
+     }
+ 
+     @Bean
+     public Binding expiredOrderBinding() {
+         return BindingBuilder.bind(expiredOrderQueue()).to(expiredOrderExchange()).with(EXPIRED_ORDER_ROUTING_KEY).noargs();
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-3/sources/source-2.html b/htmlReport/ns-3/sources/source-2.html new file mode 100644 index 0000000..e9783a5 --- /dev/null +++ b/htmlReport/ns-3/sources/source-2.html @@ -0,0 +1,144 @@ + + + + + + + Coverage Report > RedisConfig + + + + + + +
+ + +

Coverage Summary for Class: RedisConfig (cn.edu.ecnu.stu.bookstore.config)

+ + + + + + + + + + + + + + + + + + + + + +
Class + Method, % + + Line, % +
RedisConfig + + 100% + + + (2/2) + + + + 100% + + + (7/7) + +
RedisConfig$$EnhancerBySpringCGLIB$$da592ceb
Total + + 100% + + + (2/2) + + + + 100% + + + (7/7) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.config;
+ 
+ import org.springframework.beans.factory.InitializingBean;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.context.annotation.Bean;
+ import org.springframework.context.annotation.Configuration;
+ import org.springframework.data.redis.core.RedisTemplate;
+ import org.springframework.data.redis.serializer.RedisSerializer;
+ import org.springframework.data.redis.serializer.StringRedisSerializer;
+ 
+ @Configuration
+ public class RedisConfig implements InitializingBean {
+ 
+     @Autowired
+     private RedisTemplate<Object, Object> redisTemplate;
+ 
+     @Override
+     public void afterPropertiesSet(){
+         RedisSerializer stringSerializer = new StringRedisSerializer();
+         //keyлʽ
+         redisTemplate.setKeySerializer(stringSerializer);
+         //Stringлʽ
+         redisTemplate.setStringSerializer(stringSerializer);
+         //valueлʽ
+         redisTemplate.setValueSerializer(stringSerializer);
+         //hash keyлʽ
+         redisTemplate.setHashKeySerializer(stringSerializer);
+         //hash valueлʽ
+         redisTemplate.setHashValueSerializer(stringSerializer);
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-3/sources/source-3.html b/htmlReport/ns-3/sources/source-3.html new file mode 100644 index 0000000..df01541 --- /dev/null +++ b/htmlReport/ns-3/sources/source-3.html @@ -0,0 +1,170 @@ + + + + + + + Coverage Report > SecurityConfig + + + + + + +
+ + +

Coverage Summary for Class: SecurityConfig (cn.edu.ecnu.stu.bookstore.config)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class + Method, % + + Line, % +
SecurityConfig + + 100% + + + (5/5) + + + + 100% + + + (12/12) + +
SecurityConfig$$EnhancerBySpringCGLIB$$36520b6c
SecurityConfig$$EnhancerBySpringCGLIB$$36520b6c$$FastClassBySpringCGLIB$$60b6a068
SecurityConfig$$FastClassBySpringCGLIB$$99c9aeb0
Total + + 100% + + + (5/5) + + + + 100% + + + (12/12) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.config;
+ 
+ import cn.edu.ecnu.stu.bookstore.filter.AuthenticationFilter;
+ import cn.edu.ecnu.stu.bookstore.handler.AuthenticationEntryPointImpl;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.context.annotation.Bean;
+ import org.springframework.context.annotation.Configuration;
+ import org.springframework.security.authentication.AuthenticationManager;
+ import org.springframework.security.config.annotation.web.builders.HttpSecurity;
+ import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
+ import org.springframework.security.config.http.SessionCreationPolicy;
+ import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
+ import org.springframework.security.crypto.password.PasswordEncoder;
+ import org.springframework.security.web.AuthenticationEntryPoint;
+ import org.springframework.security.web.authentication.UsernamePasswordAuthenticationFilter;
+ 
+ @Configuration
+ public class SecurityConfig extends WebSecurityConfigurerAdapter {
+ 
+     @Bean
+     public PasswordEncoder passwordEncoder() {
+         return new BCryptPasswordEncoder();
+     }
+ 
+     @Autowired
+     public AuthenticationFilter authenticationFilter;
+ 
+     @Bean
+     public AuthenticationEntryPoint authenticationEntryPoint() {
+         return new AuthenticationEntryPointImpl();
+     }
+ 
+     @Bean
+     @Override
+     public AuthenticationManager authenticationManagerBean() throws Exception {
+         return super.authenticationManagerBean();
+     }
+ 
+     @Override
+     protected void configure(HttpSecurity http) throws Exception {
+         http.csrf().disable()
+                 .sessionManagement().sessionCreationPolicy(SessionCreationPolicy.STATELESS)
+                 .and()
+                 .authorizeRequests()
+                 .antMatchers("/auth/*", "/buyer/add_funds", "/buyer/payment").permitAll()
+                 .anyRequest().authenticated();
+ 
+         http.addFilterBefore(authenticationFilter, UsernamePasswordAuthenticationFilter.class);
+         http.exceptionHandling().authenticationEntryPoint(authenticationEntryPoint());
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-4/index.html b/htmlReport/ns-4/index.html new file mode 100644 index 0000000..f7c2f2e --- /dev/null +++ b/htmlReport/ns-4/index.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.controller + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.controller

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
BookController + + 100% + + + (1/1) + + + + 100% + + + (9/9) + + + + 68% + + + (17/25) + +
BuyerController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 94.7% + + + (18/19) + +
OrderController + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 83.3% + + + (10/12) + +
SellerController + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 93.3% + + + (14/15) + +
TestController + + 100% + + + (1/1) + + + + 50% + + + (2/4) + + + + 33.3% + + + (2/6) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-4/index_SORT_BY_BLOCK.html b/htmlReport/ns-4/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..ed0bc07 --- /dev/null +++ b/htmlReport/ns-4/index_SORT_BY_BLOCK.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.controller + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.controller

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
BookController + + 100% + + + (1/1) + + + + 100% + + + (9/9) + + + + 68% + + + (17/25) + +
BuyerController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 94.7% + + + (18/19) + +
OrderController + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 83.3% + + + (10/12) + +
SellerController + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 93.3% + + + (14/15) + +
TestController + + 100% + + + (1/1) + + + + 50% + + + (2/4) + + + + 33.3% + + + (2/6) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-4/index_SORT_BY_BLOCK_DESC.html b/htmlReport/ns-4/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..98f02be --- /dev/null +++ b/htmlReport/ns-4/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.controller + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.controller

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
TestController + + 100% + + + (1/1) + + + + 50% + + + (2/4) + + + + 33.3% + + + (2/6) + +
SellerController + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 93.3% + + + (14/15) + +
OrderController + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 83.3% + + + (10/12) + +
BuyerController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 94.7% + + + (18/19) + +
BookController + + 100% + + + (1/1) + + + + 100% + + + (9/9) + + + + 68% + + + (17/25) + +
AuthController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-4/index_SORT_BY_CLASS.html b/htmlReport/ns-4/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..cbc8002 --- /dev/null +++ b/htmlReport/ns-4/index_SORT_BY_CLASS.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.controller + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.controller

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
BookController + + 100% + + + (1/1) + + + + 100% + + + (9/9) + + + + 68% + + + (17/25) + +
BuyerController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 94.7% + + + (18/19) + +
OrderController + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 83.3% + + + (10/12) + +
SellerController + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 93.3% + + + (14/15) + +
TestController + + 100% + + + (1/1) + + + + 50% + + + (2/4) + + + + 33.3% + + + (2/6) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-4/index_SORT_BY_CLASS_DESC.html b/htmlReport/ns-4/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..a7c6a3a --- /dev/null +++ b/htmlReport/ns-4/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.controller + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.controller

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
TestController + + 100% + + + (1/1) + + + + 50% + + + (2/4) + + + + 33.3% + + + (2/6) + +
SellerController + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 93.3% + + + (14/15) + +
OrderController + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 83.3% + + + (10/12) + +
BuyerController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 94.7% + + + (18/19) + +
BookController + + 100% + + + (1/1) + + + + 100% + + + (9/9) + + + + 68% + + + (17/25) + +
AuthController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-4/index_SORT_BY_LINE.html b/htmlReport/ns-4/index_SORT_BY_LINE.html new file mode 100644 index 0000000..61d5272 --- /dev/null +++ b/htmlReport/ns-4/index_SORT_BY_LINE.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.controller + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.controller

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
TestController + + 100% + + + (1/1) + + + + 50% + + + (2/4) + + + + 33.3% + + + (2/6) + +
BookController + + 100% + + + (1/1) + + + + 100% + + + (9/9) + + + + 68% + + + (17/25) + +
OrderController + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 83.3% + + + (10/12) + +
SellerController + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 93.3% + + + (14/15) + +
BuyerController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 94.7% + + + (18/19) + +
AuthController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-4/index_SORT_BY_LINE_DESC.html b/htmlReport/ns-4/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..cdbe0aa --- /dev/null +++ b/htmlReport/ns-4/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.controller + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.controller

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
BuyerController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 94.7% + + + (18/19) + +
SellerController + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 93.3% + + + (14/15) + +
OrderController + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 83.3% + + + (10/12) + +
BookController + + 100% + + + (1/1) + + + + 100% + + + (9/9) + + + + 68% + + + (17/25) + +
TestController + + 100% + + + (1/1) + + + + 50% + + + (2/4) + + + + 33.3% + + + (2/6) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-4/index_SORT_BY_METHOD.html b/htmlReport/ns-4/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..ea78e28 --- /dev/null +++ b/htmlReport/ns-4/index_SORT_BY_METHOD.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.controller + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.controller

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
TestController + + 100% + + + (1/1) + + + + 50% + + + (2/4) + + + + 33.3% + + + (2/6) + +
AuthController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
BookController + + 100% + + + (1/1) + + + + 100% + + + (9/9) + + + + 68% + + + (17/25) + +
BuyerController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 94.7% + + + (18/19) + +
OrderController + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 83.3% + + + (10/12) + +
SellerController + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 93.3% + + + (14/15) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-4/index_SORT_BY_METHOD_DESC.html b/htmlReport/ns-4/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..21ecf87 --- /dev/null +++ b/htmlReport/ns-4/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.controller + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.controller

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
SellerController + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 93.3% + + + (14/15) + +
OrderController + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 83.3% + + + (10/12) + +
BuyerController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 94.7% + + + (18/19) + +
BookController + + 100% + + + (1/1) + + + + 100% + + + (9/9) + + + + 68% + + + (17/25) + +
AuthController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
TestController + + 100% + + + (1/1) + + + + 50% + + + (2/4) + + + + 33.3% + + + (2/6) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-4/index_SORT_BY_NAME_DESC.html b/htmlReport/ns-4/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..6c0f552 --- /dev/null +++ b/htmlReport/ns-4/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.controller + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.controller

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.controller + + 100% + + + (6/6) + + + + 94.1% + + + (32/34) + + + + 82.2% + + + (74/90) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
TestController + + 100% + + + (1/1) + + + + 50% + + + (2/4) + + + + 33.3% + + + (2/6) + +
SellerController + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 93.3% + + + (14/15) + +
OrderController + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 83.3% + + + (10/12) + +
BuyerController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 94.7% + + + (18/19) + +
BookController + + 100% + + + (1/1) + + + + 100% + + + (9/9) + + + + 68% + + + (17/25) + +
AuthController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-4/sources/source-1.html b/htmlReport/ns-4/sources/source-1.html new file mode 100644 index 0000000..6692273 --- /dev/null +++ b/htmlReport/ns-4/sources/source-1.html @@ -0,0 +1,153 @@ + + + + + + + Coverage Report > AuthController + + + + + + +
+ + +

Coverage Summary for Class: AuthController (cn.edu.ecnu.stu.bookstore.controller)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
AuthController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.controller;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.Result;
+ import cn.edu.ecnu.stu.bookstore.pojo.User;
+ import cn.edu.ecnu.stu.bookstore.service.UserService;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.web.bind.annotation.*;
+ 
+ import java.util.Map;
+ 
+ @RestController
+ @RequestMapping("/auth")
+ public class AuthController {
+ 
+     @Autowired
+     private UserService userService;
+ 
+     @PostMapping("/register")
+     public Result register(@RequestBody User user) {
+         userService.register(user);
+         return Result.success();
+     }
+ 
+     @PostMapping("/unregister")
+     public Result unregister(@RequestBody User user) {
+         userService.unregister(user);
+         return Result.success();
+     }
+ 
+     @PostMapping("/login")
+     public Result login(@RequestBody User user) {
+         return Result.success(userService.login(user));
+     }
+ 
+     @PostMapping("/password")
+     public Result changePassword(@RequestBody Map<String, String> map) {
+         String username = map.get("username");
+         String oldPassword = map.get("oldPassword");
+         String newPassword = map.get("newPassword");
+         userService.changePassword(username, oldPassword, newPassword);
+         return Result.success();
+     }
+ 
+     @PostMapping("/logout")
+     public Result logout(@RequestBody Map<String, String> map) {
+         userService.logout(map.get("username"));
+         return Result.success();
+     }
+ }
+ 
+
+
+
+ + + + + + diff --git a/htmlReport/ns-4/sources/source-2.html b/htmlReport/ns-4/sources/source-2.html new file mode 100644 index 0000000..551c63d --- /dev/null +++ b/htmlReport/ns-4/sources/source-2.html @@ -0,0 +1,196 @@ + + + + + + + Coverage Report > BookController + + + + + + +
+ + +

Coverage Summary for Class: BookController (cn.edu.ecnu.stu.bookstore.controller)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
BookController + + 100% + + + (1/1) + + + + 100% + + + (9/9) + + + + 68% + + + (17/25) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.controller;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.component.Result;
+ import cn.edu.ecnu.stu.bookstore.service.impl.BookService;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.util.StringUtils;
+ import org.springframework.web.bind.annotation.*;
+ 
+ @RestController
+ @RequestMapping("/book")
+ public class BookController {
+ 
+     @Autowired
+     private BookService bookService;
+ 
+     @GetMapping("/title")
+     public Result getBookByTitle(@RequestParam("title") String title,
+                                  @RequestParam(value = "pageNum", required = false, defaultValue = "1") Integer pageNum,
+                                  @RequestParam(value = "pageSize", required = false, defaultValue = "5") Integer pageSize) {
+         if(!StringUtils.hasText(title))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         return Result.success(bookService.getBookByTitle(title, null, pageNum, pageSize));
+     }
+ 
+     @GetMapping("/title_in_store")
+     public Result getBookByTitleInStore(@RequestParam("title") String title,
+                                  @RequestParam("storeId") String storeId,
+                                  @RequestParam(value = "pageNum", required = false, defaultValue = "1") Integer pageNum,
+                                  @RequestParam(value = "pageSize", required = false, defaultValue = "5") Integer pageSize) {
+         if(!StringUtils.hasText(title))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         return Result.success(bookService.getBookByTitle(title, storeId, pageNum, pageSize));
+     }
+ 
+     @GetMapping("/author")
+     public Result getBookByAuthor(@RequestParam("author") String author,
+                                  @RequestParam(value = "pageNum", required = false, defaultValue = "1") Integer pageNum,
+                                  @RequestParam(value = "pageSize", required = false, defaultValue = "5") Integer pageSize) {
+         if(!StringUtils.hasText(author))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         return Result.success(bookService.getBookByAuthor(author, null, pageNum, pageSize));
+     }
+ 
+     @GetMapping("/author_in_store")
+     public Result getBookByAuthorInStore(@RequestParam("author") String author,
+                                         @RequestParam("storeId") String storeId,
+                                         @RequestParam(value = "pageNum", required = false, defaultValue = "1") Integer pageNum,
+                                         @RequestParam(value = "pageSize", required = false, defaultValue = "5") Integer pageSize) {
+         if(!StringUtils.hasText(author))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         return Result.success(bookService.getBookByAuthor(author, storeId, pageNum, pageSize));
+     }
+ 
+     @GetMapping("/tag")
+     public Result getBookByTag(@RequestParam("tag") String tag,
+                                   @RequestParam(value = "pageNum", required = false, defaultValue = "1") Integer pageNum,
+                                   @RequestParam(value = "pageSize", required = false, defaultValue = "5") Integer pageSize) {
+         if(!StringUtils.hasText(tag))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         return Result.success(bookService.getBookByTag(tag, null, pageNum, pageSize));
+     }
+ 
+     @GetMapping("/tag_in_store")
+     public Result getBookByTagInStore(@RequestParam("tag") String tag,
+                                          @RequestParam("storeId") String storeId,
+                                          @RequestParam(value = "pageNum", required = false, defaultValue = "1") Integer pageNum,
+                                          @RequestParam(value = "pageSize", required = false, defaultValue = "5") Integer pageSize) {
+         if(!StringUtils.hasText(tag))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         return Result.success(bookService.getBookByTag(tag, storeId, pageNum, pageSize));
+     }
+ 
+     @GetMapping("/content_in_store")
+     public Result getBookByContentInStore(@RequestParam("content") String content,
+                                       @RequestParam("storeId") String storeId,
+                                       @RequestParam(value = "pageNum", required = false, defaultValue = "1") Integer pageNum,
+                                       @RequestParam(value = "pageSize", required = false, defaultValue = "5") Integer pageSize) {
+         if(!StringUtils.hasText(content))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         return Result.success(bookService.getBookByContent(content, storeId, pageNum, pageSize));
+     }
+ 
+     @GetMapping("/content")
+     public Result getBookByContent(@RequestParam("content") String content,
+                                           @RequestParam(value = "pageNum", required = false, defaultValue = "1") Integer pageNum,
+                                           @RequestParam(value = "pageSize", required = false, defaultValue = "5") Integer pageSize) {
+         if(!StringUtils.hasText(content))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         return Result.success(bookService.getBookByContent(content, null, pageNum, pageSize));
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-4/sources/source-3.html b/htmlReport/ns-4/sources/source-3.html new file mode 100644 index 0000000..71f5dfe --- /dev/null +++ b/htmlReport/ns-4/sources/source-3.html @@ -0,0 +1,165 @@ + + + + + + + Coverage Report > BuyerController + + + + + + +
+ + +

Coverage Summary for Class: BuyerController (cn.edu.ecnu.stu.bookstore.controller)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
BuyerController + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 94.7% + + + (18/19) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.controller;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.component.Result;
+ import cn.edu.ecnu.stu.bookstore.pojo.vo.NewOrderVO;
+ import cn.edu.ecnu.stu.bookstore.service.impl.BuyerService;
+ import com.alibaba.fastjson.JSONObject;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.util.StringUtils;
+ import org.springframework.web.bind.annotation.*;
+ 
+ import java.math.BigDecimal;
+ import java.util.Map;
+ 
+ @RestController
+ @RequestMapping("/buyer")
+ public class BuyerController {
+ 
+     @Autowired
+     private BuyerService buyerService;
+ 
+     @PostMapping("/new_order")
+     public Result newOrder(@RequestBody NewOrderVO newOrderVO) {
+         buyerService.newOrder(newOrderVO);
+         return Result.success();
+     }
+ 
+     @PostMapping("/payment")
+     public Result payment(@RequestBody JSONObject object) {
+         Integer userId = object.getInteger("userId");
+         String orderId = object.getString("orderId");
+         String password = object.getString("password");
+         buyerService.payment(userId, orderId, password);
+         return Result.success();
+     }
+ 
+     @PostMapping("/add_funds")
+     public Result addFunds(@RequestBody JSONObject object) {
+         String username = object.getString("username");
+         String password = object.getString("password");
+         BigDecimal addValue = object.getBigDecimal("addValue");
+         buyerService.addFunds(username, password, addValue);
+         return Result.success();
+     }
+ 
+     @GetMapping("/order")
+     public Result order() {
+         return Result.success(buyerService.getOrderList());
+     }
+ 
+     @PostMapping("/take_delivery")
+     public Result takeDelivery(@RequestBody Map<String, String> body) {
+         String orderId = body.get("orderId");
+         if(!StringUtils.hasText(orderId))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         buyerService.takeDelivery(orderId);
+         return Result.success();
+     }
+ 
+ 
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-4/sources/source-4.html b/htmlReport/ns-4/sources/source-4.html new file mode 100644 index 0000000..c243f0c --- /dev/null +++ b/htmlReport/ns-4/sources/source-4.html @@ -0,0 +1,146 @@ + + + + + + + Coverage Report > OrderController + + + + + + +
+ + +

Coverage Summary for Class: OrderController (cn.edu.ecnu.stu.bookstore.controller)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
OrderController + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 83.3% + + + (10/12) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.controller;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.component.Result;
+ import cn.edu.ecnu.stu.bookstore.pojo.Order;
+ import cn.edu.ecnu.stu.bookstore.service.impl.OrderService;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.util.StringUtils;
+ import org.springframework.web.bind.annotation.*;
+ 
+ import java.util.Map;
+ 
+ @RestController
+ @RequestMapping("/order")
+ public class OrderController {
+ 
+     @Autowired
+     private OrderService orderService;
+ 
+     @GetMapping("/")
+     public Result getOrderList(@RequestParam(value = "status", required = false) Integer status) {
+         return Result.success(orderService.getOrderList(status));
+     }
+ 
+     @PostMapping("/cancel_order")
+     public Result cancelOrder(@RequestBody Map<String, Object> map) {
+         Object orderIdObj = map.get("orderId");
+         if(orderIdObj == null)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         String orderId = (String) orderIdObj;
+         if(!StringUtils.hasText(orderId))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         orderService.cancelOrder(orderId);
+         return Result.success();
+     }
+ 
+     @PostMapping("/add")
+     public Result add(@RequestBody Order order) {
+         orderService.add(order);
+         return Result.success();
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-4/sources/source-5.html b/htmlReport/ns-4/sources/source-5.html new file mode 100644 index 0000000..2e873f9 --- /dev/null +++ b/htmlReport/ns-4/sources/source-5.html @@ -0,0 +1,158 @@ + + + + + + + Coverage Report > SellerController + + + + + + +
+ + +

Coverage Summary for Class: SellerController (cn.edu.ecnu.stu.bookstore.controller)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
SellerController + + 100% + + + (1/1) + + + + 100% + + + (5/5) + + + + 93.3% + + + (14/15) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.controller;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.component.Result;
+ import cn.edu.ecnu.stu.bookstore.pojo.Book;
+ import cn.edu.ecnu.stu.bookstore.pojo.Store;
+ import cn.edu.ecnu.stu.bookstore.service.SellerService;
+ import com.alibaba.fastjson.JSONObject;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.util.StringUtils;
+ import org.springframework.web.bind.annotation.PostMapping;
+ import org.springframework.web.bind.annotation.RequestBody;
+ import org.springframework.web.bind.annotation.RequestMapping;
+ import org.springframework.web.bind.annotation.RestController;
+ 
+ import java.util.Map;
+ 
+ @RestController
+ @RequestMapping("/seller")
+ public class SellerController {
+ 
+     @Autowired
+     public SellerService sellerService;
+ 
+     @PostMapping("/create_store")
+     public Result createStore(@RequestBody Store store) {
+         sellerService.createStore(store);
+         return Result.success();
+     }
+ 
+     @PostMapping("add_book")
+     public Result addBook(@RequestBody Book book) {
+         sellerService.addBook(book);
+         return Result.success();
+     }
+ 
+     @PostMapping("add_stock_level")
+     public Result addStockLevel(@RequestBody JSONObject body) {
+         String storeId = body.getString("storeId");
+         String bookId = body.getString("bookId");
+         int addStockLevel = body.getIntValue("addStockLevel");
+         sellerService.addStockLevel(storeId, bookId, addStockLevel);
+         return Result.success();
+     }
+ 
+     @PostMapping("send_goods")
+     public Result sendGoods(@RequestBody Map<String, String> body) {
+         String orderId = body.get("orderId");
+         if(!StringUtils.hasText(orderId))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         sellerService.sendGoods(orderId);
+         return Result.success();
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-4/sources/source-6.html b/htmlReport/ns-4/sources/source-6.html new file mode 100644 index 0000000..0b5c3ea --- /dev/null +++ b/htmlReport/ns-4/sources/source-6.html @@ -0,0 +1,143 @@ + + + + + + + Coverage Report > TestController + + + + + + +
+ + +

Coverage Summary for Class: TestController (cn.edu.ecnu.stu.bookstore.controller)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
TestController + + 100% + + + (1/1) + + + + 50% + + + (2/4) + + + + 33.3% + + + (2/6) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.controller;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.Result;
+ import cn.edu.ecnu.stu.bookstore.config.RabbitMqConfig;
+ import com.rabbitmq.client.Channel;
+ import org.springframework.amqp.core.Message;
+ import org.springframework.amqp.rabbit.annotation.RabbitListener;
+ import org.springframework.amqp.rabbit.core.RabbitTemplate;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.stereotype.Controller;
+ import org.springframework.web.bind.annotation.GetMapping;
+ import org.springframework.web.bind.annotation.RequestParam;
+ import org.springframework.web.bind.annotation.RestController;
+ 
+ @RestController
+ public class TestController {
+ 
+     @Autowired
+     private RabbitTemplate rabbitTemplate;
+ 
+     @GetMapping("/test")
+     public Result test() {
+         return Result.success("hello, test");
+     }
+ 
+     @GetMapping("/testmq")
+     public Result testmq(@RequestParam("message") String message) {
+         rabbitTemplate.convertAndSend(RabbitMqConfig.EXPIRED_ORDER_EXCHANGE, RabbitMqConfig.EXPIRED_ORDER_ROUTING_KEY,
+                 message, message1 -> {
+                     message1.getMessageProperties().setDelay(5000);
+                     return message1;
+                 });
+         return Result.success();
+     }
+ 
+ //    @RabbitListener(queues = RabbitMqConfig.EXPIRED_ORDER_QUEUE)
+ //    public void processExpiredOrder(String msg, Channel channel, Message message) {
+ //        System.out.println(msg);
+ //    }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-5/index.html b/htmlReport/ns-5/index.html new file mode 100644 index 0000000..03a58e8 --- /dev/null +++ b/htmlReport/ns-5/index.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.filter + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.filter

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthenticationFilter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-5/index_SORT_BY_BLOCK.html b/htmlReport/ns-5/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..bbef4bb --- /dev/null +++ b/htmlReport/ns-5/index_SORT_BY_BLOCK.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.filter + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.filter

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthenticationFilter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-5/index_SORT_BY_BLOCK_DESC.html b/htmlReport/ns-5/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..a3d1763 --- /dev/null +++ b/htmlReport/ns-5/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.filter + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.filter

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthenticationFilter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-5/index_SORT_BY_CLASS.html b/htmlReport/ns-5/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..e9c957a --- /dev/null +++ b/htmlReport/ns-5/index_SORT_BY_CLASS.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.filter + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.filter

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthenticationFilter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-5/index_SORT_BY_CLASS_DESC.html b/htmlReport/ns-5/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..4fd51b6 --- /dev/null +++ b/htmlReport/ns-5/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.filter + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.filter

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthenticationFilter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-5/index_SORT_BY_LINE.html b/htmlReport/ns-5/index_SORT_BY_LINE.html new file mode 100644 index 0000000..0115bc5 --- /dev/null +++ b/htmlReport/ns-5/index_SORT_BY_LINE.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.filter + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.filter

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthenticationFilter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-5/index_SORT_BY_LINE_DESC.html b/htmlReport/ns-5/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..6c45539 --- /dev/null +++ b/htmlReport/ns-5/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.filter + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.filter

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthenticationFilter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-5/index_SORT_BY_METHOD.html b/htmlReport/ns-5/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..ebcd3f9 --- /dev/null +++ b/htmlReport/ns-5/index_SORT_BY_METHOD.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.filter + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.filter

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthenticationFilter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-5/index_SORT_BY_METHOD_DESC.html b/htmlReport/ns-5/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..f9fbe06 --- /dev/null +++ b/htmlReport/ns-5/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.filter + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.filter

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthenticationFilter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-5/index_SORT_BY_NAME_DESC.html b/htmlReport/ns-5/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..597a3d4 --- /dev/null +++ b/htmlReport/ns-5/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.filter + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.filter

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.filter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthenticationFilter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-5/sources/source-1.html b/htmlReport/ns-5/sources/source-1.html new file mode 100644 index 0000000..8676175 --- /dev/null +++ b/htmlReport/ns-5/sources/source-1.html @@ -0,0 +1,149 @@ + + + + + + + Coverage Report > AuthenticationFilter + + + + + + +
+ + +

Coverage Summary for Class: AuthenticationFilter (cn.edu.ecnu.stu.bookstore.filter)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
AuthenticationFilter + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (12/12) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.filter;
+ 
+ import cn.edu.ecnu.stu.bookstore.pojo.User;
+ import cn.edu.ecnu.stu.bookstore.utils.JwtUtil;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.data.redis.core.RedisTemplate;
+ import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
+ import org.springframework.security.core.context.SecurityContextHolder;
+ import org.springframework.stereotype.Component;
+ import org.springframework.util.StringUtils;
+ import org.springframework.web.filter.OncePerRequestFilter;
+ 
+ import javax.servlet.FilterChain;
+ import javax.servlet.ServletException;
+ import javax.servlet.http.HttpServletRequest;
+ import javax.servlet.http.HttpServletResponse;
+ import java.io.IOException;
+ 
+ @Component
+ public class AuthenticationFilter extends OncePerRequestFilter {
+ 
+     @Autowired
+     private RedisTemplate redisTemplate;
+ 
+     private boolean hasLogin(Integer userId) {
+         String s = (String)redisTemplate.opsForValue().get("userId:" + userId);
+         return StringUtils.hasText(s);
+     }
+ 
+     @Override
+     protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException {
+         String token = request.getHeader("token");
+         if(!StringUtils.hasText(token)){
+             filterChain.doFilter(request, response);
+             return;
+         }
+         User user = (User) JwtUtil.getTokenInfo(token, User.class);
+         if(!hasLogin(user.getId())) {
+             filterChain.doFilter(request, response);
+             return;
+         }
+         UsernamePasswordAuthenticationToken token1 = new UsernamePasswordAuthenticationToken(user, null, null);
+         SecurityContextHolder.getContext().setAuthentication(token1);
+         filterChain.doFilter(request, response);
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-6/index.html b/htmlReport/ns-6/index.html new file mode 100644 index 0000000..761c558 --- /dev/null +++ b/htmlReport/ns-6/index.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.handler + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.handler

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthenticationEntryPointImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
GlobalExceptionHandler + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
OrderStatusTypeHandler + + 100% + + + (1/1) + + + + 40% + + + (2/5) + + + + 40% + + + (2/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-6/index_SORT_BY_BLOCK.html b/htmlReport/ns-6/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..692066b --- /dev/null +++ b/htmlReport/ns-6/index_SORT_BY_BLOCK.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.handler + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.handler

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthenticationEntryPointImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
GlobalExceptionHandler + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
OrderStatusTypeHandler + + 100% + + + (1/1) + + + + 40% + + + (2/5) + + + + 40% + + + (2/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-6/index_SORT_BY_BLOCK_DESC.html b/htmlReport/ns-6/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..fb6598e --- /dev/null +++ b/htmlReport/ns-6/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.handler + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.handler

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
OrderStatusTypeHandler + + 100% + + + (1/1) + + + + 40% + + + (2/5) + + + + 40% + + + (2/5) + +
GlobalExceptionHandler + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
AuthenticationEntryPointImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-6/index_SORT_BY_CLASS.html b/htmlReport/ns-6/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..fad0524 --- /dev/null +++ b/htmlReport/ns-6/index_SORT_BY_CLASS.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.handler + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.handler

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
AuthenticationEntryPointImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
GlobalExceptionHandler + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
OrderStatusTypeHandler + + 100% + + + (1/1) + + + + 40% + + + (2/5) + + + + 40% + + + (2/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-6/index_SORT_BY_CLASS_DESC.html b/htmlReport/ns-6/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..6380d21 --- /dev/null +++ b/htmlReport/ns-6/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.handler + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.handler

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
OrderStatusTypeHandler + + 100% + + + (1/1) + + + + 40% + + + (2/5) + + + + 40% + + + (2/5) + +
GlobalExceptionHandler + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
AuthenticationEntryPointImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-6/index_SORT_BY_LINE.html b/htmlReport/ns-6/index_SORT_BY_LINE.html new file mode 100644 index 0000000..628a41f --- /dev/null +++ b/htmlReport/ns-6/index_SORT_BY_LINE.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.handler + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.handler

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
OrderStatusTypeHandler + + 100% + + + (1/1) + + + + 40% + + + (2/5) + + + + 40% + + + (2/5) + +
AuthenticationEntryPointImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
GlobalExceptionHandler + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-6/index_SORT_BY_LINE_DESC.html b/htmlReport/ns-6/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..d68b336 --- /dev/null +++ b/htmlReport/ns-6/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.handler + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.handler

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
GlobalExceptionHandler + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
AuthenticationEntryPointImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
OrderStatusTypeHandler + + 100% + + + (1/1) + + + + 40% + + + (2/5) + + + + 40% + + + (2/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-6/index_SORT_BY_METHOD.html b/htmlReport/ns-6/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..22afad8 --- /dev/null +++ b/htmlReport/ns-6/index_SORT_BY_METHOD.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.handler + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.handler

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
OrderStatusTypeHandler + + 100% + + + (1/1) + + + + 40% + + + (2/5) + + + + 40% + + + (2/5) + +
AuthenticationEntryPointImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
GlobalExceptionHandler + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-6/index_SORT_BY_METHOD_DESC.html b/htmlReport/ns-6/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..c8564a9 --- /dev/null +++ b/htmlReport/ns-6/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.handler + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.handler

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
GlobalExceptionHandler + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
AuthenticationEntryPointImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
OrderStatusTypeHandler + + 100% + + + (1/1) + + + + 40% + + + (2/5) + + + + 40% + + + (2/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-6/index_SORT_BY_NAME_DESC.html b/htmlReport/ns-6/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..02564f2 --- /dev/null +++ b/htmlReport/ns-6/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,196 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.handler + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.handler

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.handler + + 100% + + + (3/3) + + + + 66.7% + + + (6/9) + + + + 75% + + + (9/12) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
OrderStatusTypeHandler + + 100% + + + (1/1) + + + + 40% + + + (2/5) + + + + 40% + + + (2/5) + +
GlobalExceptionHandler + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
AuthenticationEntryPointImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-6/sources/source-1.html b/htmlReport/ns-6/sources/source-1.html new file mode 100644 index 0000000..49a63f8 --- /dev/null +++ b/htmlReport/ns-6/sources/source-1.html @@ -0,0 +1,125 @@ + + + + + + + Coverage Report > AuthenticationEntryPointImpl + + + + + + +
+ + +

Coverage Summary for Class: AuthenticationEntryPointImpl (cn.edu.ecnu.stu.bookstore.handler)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
AuthenticationEntryPointImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.handler;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.component.Result;
+ import com.alibaba.fastjson.JSON;
+ import org.springframework.security.core.AuthenticationException;
+ import org.springframework.security.web.AuthenticationEntryPoint;
+ 
+ import javax.servlet.ServletException;
+ import javax.servlet.http.HttpServletRequest;
+ import javax.servlet.http.HttpServletResponse;
+ import java.io.IOException;
+ 
+ public class AuthenticationEntryPointImpl implements AuthenticationEntryPoint {
+     @Override
+     public void commence(HttpServletRequest request, HttpServletResponse response, AuthenticationException authException) throws IOException, ServletException {
+         response.setStatus(200);
+         response.setContentType("application/json");
+         response.setCharacterEncoding("utf-8");
+         response.getWriter().print(JSON.toJSONString(Result.error(Constants.AUTHENTICATION_ERROR, authException.getMessage())));
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-6/sources/source-2.html b/htmlReport/ns-6/sources/source-2.html new file mode 100644 index 0000000..60fcbf6 --- /dev/null +++ b/htmlReport/ns-6/sources/source-2.html @@ -0,0 +1,127 @@ + + + + + + + Coverage Report > GlobalExceptionHandler + + + + + + +
+ + +

Coverage Summary for Class: GlobalExceptionHandler (cn.edu.ecnu.stu.bookstore.handler)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
GlobalExceptionHandler + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (2/2) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.handler;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.component.Result;
+ import org.springframework.web.bind.annotation.ControllerAdvice;
+ import org.springframework.web.bind.annotation.ExceptionHandler;
+ import org.springframework.web.bind.annotation.ResponseBody;
+ import org.springframework.web.bind.annotation.RestControllerAdvice;
+ 
+ @RestControllerAdvice
+ public class GlobalExceptionHandler {
+ 
+     @ExceptionHandler(AppException.class)
+     public Result handleAppException(AppException e) {
+         return Result.error(e.getCode(), e.getMessage());
+     }
+ 
+ //    @ExceptionHandler(Exception.class)
+ //    public Result handleException(Exception e) {
+ //        return Result.error(Constants.SYSTEM_ERROR, e.getMessage());
+ //    }
+ 
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-6/sources/source-3.html b/htmlReport/ns-6/sources/source-3.html new file mode 100644 index 0000000..891c0ed --- /dev/null +++ b/htmlReport/ns-6/sources/source-3.html @@ -0,0 +1,135 @@ + + + + + + + Coverage Report > OrderStatusTypeHandler + + + + + + +
+ + +

Coverage Summary for Class: OrderStatusTypeHandler (cn.edu.ecnu.stu.bookstore.handler)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
OrderStatusTypeHandler + + 100% + + + (1/1) + + + + 40% + + + (2/5) + + + + 40% + + + (2/5) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.handler;
+ 
+ import cn.edu.ecnu.stu.bookstore.pojo.OrderStatus;
+ import org.apache.ibatis.type.JdbcType;
+ import org.apache.ibatis.type.TypeHandler;
+ 
+ import java.sql.CallableStatement;
+ import java.sql.PreparedStatement;
+ import java.sql.ResultSet;
+ import java.sql.SQLException;
+ 
+ public class OrderStatusTypeHandler implements TypeHandler<OrderStatus> {
+     @Override
+     public void setParameter(PreparedStatement preparedStatement, int i, OrderStatus status, JdbcType jdbcType) throws SQLException {
+         preparedStatement.setInt(i, status.getValue());
+     }
+ 
+     @Override
+     public OrderStatus getResult(ResultSet resultSet, String s) throws SQLException {
+         return OrderStatus.getByValue(resultSet.getInt(s));
+     }
+ 
+     @Override
+     public OrderStatus getResult(ResultSet resultSet, int i) throws SQLException {
+         return OrderStatus.getByValue(resultSet.getInt(i));
+     }
+ 
+     @Override
+     public OrderStatus getResult(CallableStatement callableStatement, int i) throws SQLException {
+         return OrderStatus.getByValue(callableStatement.getInt(i));
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-7/index.html b/htmlReport/ns-7/index.html new file mode 100644 index 0000000..4d98dcc --- /dev/null +++ b/htmlReport/ns-7/index.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.listener + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.listener

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ExpiredOrderListener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-7/index_SORT_BY_BLOCK.html b/htmlReport/ns-7/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..6bbaf70 --- /dev/null +++ b/htmlReport/ns-7/index_SORT_BY_BLOCK.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.listener + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.listener

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ExpiredOrderListener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-7/index_SORT_BY_BLOCK_DESC.html b/htmlReport/ns-7/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..4d67a76 --- /dev/null +++ b/htmlReport/ns-7/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.listener + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.listener

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ExpiredOrderListener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-7/index_SORT_BY_CLASS.html b/htmlReport/ns-7/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..a618393 --- /dev/null +++ b/htmlReport/ns-7/index_SORT_BY_CLASS.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.listener + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.listener

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ExpiredOrderListener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-7/index_SORT_BY_CLASS_DESC.html b/htmlReport/ns-7/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..cd69ab4 --- /dev/null +++ b/htmlReport/ns-7/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.listener + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.listener

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ExpiredOrderListener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-7/index_SORT_BY_LINE.html b/htmlReport/ns-7/index_SORT_BY_LINE.html new file mode 100644 index 0000000..81aaf09 --- /dev/null +++ b/htmlReport/ns-7/index_SORT_BY_LINE.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.listener + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.listener

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ExpiredOrderListener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-7/index_SORT_BY_LINE_DESC.html b/htmlReport/ns-7/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..9c4b27a --- /dev/null +++ b/htmlReport/ns-7/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.listener + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.listener

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ExpiredOrderListener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-7/index_SORT_BY_METHOD.html b/htmlReport/ns-7/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..676feed --- /dev/null +++ b/htmlReport/ns-7/index_SORT_BY_METHOD.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.listener + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.listener

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ExpiredOrderListener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-7/index_SORT_BY_METHOD_DESC.html b/htmlReport/ns-7/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..e404510 --- /dev/null +++ b/htmlReport/ns-7/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.listener + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.listener

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ExpiredOrderListener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-7/index_SORT_BY_NAME_DESC.html b/htmlReport/ns-7/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..3c54d17 --- /dev/null +++ b/htmlReport/ns-7/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.listener + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.listener

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.listener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ExpiredOrderListener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-7/sources/source-1.html b/htmlReport/ns-7/sources/source-1.html new file mode 100644 index 0000000..a5be057 --- /dev/null +++ b/htmlReport/ns-7/sources/source-1.html @@ -0,0 +1,129 @@ + + + + + + + Coverage Report > ExpiredOrderListener + + + + + + +
+ + +

Coverage Summary for Class: ExpiredOrderListener (cn.edu.ecnu.stu.bookstore.listener)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
ExpiredOrderListener + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.listener;
+ 
+ import cn.edu.ecnu.stu.bookstore.config.RabbitMqConfig;
+ import cn.edu.ecnu.stu.bookstore.mapper.OrderMapper;
+ import cn.edu.ecnu.stu.bookstore.pojo.OrderStatus;
+ import com.rabbitmq.client.Channel;
+ import org.springframework.amqp.core.Message;
+ import org.springframework.amqp.rabbit.annotation.RabbitListener;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.stereotype.Component;
+ 
+ @Component
+ public class ExpiredOrderListener {
+ 
+     @Autowired
+     private OrderMapper orderMapper;
+ 
+     @RabbitListener(queues = RabbitMqConfig.EXPIRED_ORDER_QUEUE)
+     public void processExpiredOrder(String msg, Channel channel, Message message) {
+         System.out.println(msg + "");
+         OrderStatus status = OrderStatus.getByValue(orderMapper.selectStatus(msg));
+         if(OrderStatus.WAIT_PAYMENT.equals(status)) {
+             orderMapper.updateOrderStatus(msg, OrderStatus.CANCEL);
+         }
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-7/sources/source-2.html b/htmlReport/ns-7/sources/source-2.html new file mode 100644 index 0000000..b0c5367 --- /dev/null +++ b/htmlReport/ns-7/sources/source-2.html @@ -0,0 +1,158 @@ + + + + + + + Coverage Report > LoginUser + + + + + + +
+ + +

Coverage Summary for Class: LoginUser (cn.edu.ecnu.stu.bookstore.pojo)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
LoginUser + + 100% + + + (1/1) + + + + 88.9% + + + (8/9) + + + + 88.9% + + + (8/9) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.pojo;
+ 
+ import lombok.AllArgsConstructor;
+ import lombok.Data;
+ import lombok.NoArgsConstructor;
+ import org.springframework.security.core.GrantedAuthority;
+ import org.springframework.security.core.userdetails.UserDetails;
+ 
+ import java.io.Serializable;
+ import java.util.Collection;
+ 
+ @AllArgsConstructor
+ public class LoginUser implements UserDetails {
+ 
+     private User user;
+ 
+     @Override
+     public Collection<? extends GrantedAuthority> getAuthorities() {
+         return null;
+     }
+ 
+     @Override
+     public String getPassword() {
+         return user.getPassword();
+     }
+ 
+     @Override
+     public String getUsername() {
+         return user.getUsername();
+     }
+ 
+     @Override
+     public boolean isAccountNonExpired() {
+         return true;
+     }
+ 
+     @Override
+     public boolean isAccountNonLocked() {
+         return true;
+     }
+ 
+     @Override
+     public boolean isCredentialsNonExpired() {
+         return true;
+     }
+ 
+     @Override
+     public boolean isEnabled() {
+         return true;
+     }
+ 
+     public User getUser() {
+         return user;
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-7/sources/source-3.html b/htmlReport/ns-7/sources/source-3.html new file mode 100644 index 0000000..c850731 --- /dev/null +++ b/htmlReport/ns-7/sources/source-3.html @@ -0,0 +1,161 @@ + + + + + + + Coverage Report > Order + + + + + + +
+ + +

Coverage Summary for Class: Order (cn.edu.ecnu.stu.bookstore.pojo)

+ + + + + + + + + + + + + + + + + + + + + + + +
Class + Method, % + + Line, % +
Order + + 100% + + + (12/12) + + + + 100% + + + (12/12) + +
Order$OrderBuilder + + 100% + + + (1/1) + + + + 100% + + + (1/1) + +
Total + + 100% + + + (13/13) + + + + 100% + + + (13/13) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.pojo;
+ 
+ import lombok.AllArgsConstructor;
+ import lombok.Builder;
+ import lombok.Data;
+ import lombok.NoArgsConstructor;
+ 
+ import java.math.BigDecimal;
+ import java.sql.Date;
+ 
+ @Data
+ @NoArgsConstructor
+ @AllArgsConstructor
+ @Builder
+ public class Order {
+ 
+     private String orderId;
+ 
+     private Integer buyerId;
+ 
+     private String fromAddress;
+ 
+     private String toAddress;
+ 
+     private BigDecimal price;
+ 
+     private OrderStatus status;
+ 
+     private String storeId;
+ 
+     private Date createTime;
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-7/sources/source-4.html b/htmlReport/ns-7/sources/source-4.html new file mode 100644 index 0000000..bc7da8a --- /dev/null +++ b/htmlReport/ns-7/sources/source-4.html @@ -0,0 +1,131 @@ + + + + + + + Coverage Report > OrderStatus + + + + + + +
+ + +

Coverage Summary for Class: OrderStatus (cn.edu.ecnu.stu.bookstore.pojo)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
OrderStatus + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 91.7% + + + (11/12) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.pojo;
+ 
+ import lombok.AllArgsConstructor;
+ import lombok.NoArgsConstructor;
+ 
+ @NoArgsConstructor
+ @AllArgsConstructor
+ public enum OrderStatus{
+     WAIT_PAYMENT(0),
+     WAIT_SEND(1),
+     WAIT_RECEIVE(2),
+     COMPLETED(3),
+     CANCEL(4);
+ 
+     private int value;
+ 
+     public int getValue() {
+         return value;
+     }
+ 
+     public static OrderStatus getByValue(int val) {
+         for(OrderStatus status : values()) {
+             if(status.value == val)
+                 return status;
+         }
+         return null;
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-7/sources/source-5.html b/htmlReport/ns-7/sources/source-5.html new file mode 100644 index 0000000..6e73d0e --- /dev/null +++ b/htmlReport/ns-7/sources/source-5.html @@ -0,0 +1,121 @@ + + + + + + + Coverage Report > Store + + + + + + +
+ + +

Coverage Summary for Class: Store (cn.edu.ecnu.stu.bookstore.pojo)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
Store + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 80% + + + (4/5) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.pojo;
+ 
+ import lombok.AllArgsConstructor;
+ import lombok.Data;
+ import lombok.NoArgsConstructor;
+ 
+ import java.sql.Date;
+ 
+ @Data
+ @NoArgsConstructor
+ public class Store {
+ 
+     private String storeId;
+ 
+     private int sellerId;
+ 
+     private Date createTime;
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-7/sources/source-6.html b/htmlReport/ns-7/sources/source-6.html new file mode 100644 index 0000000..3277e79 --- /dev/null +++ b/htmlReport/ns-7/sources/source-6.html @@ -0,0 +1,132 @@ + + + + + + + Coverage Report > User + + + + + + +
+ + +

Coverage Summary for Class: User (cn.edu.ecnu.stu.bookstore.pojo)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
User + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 100% + + + (8/8) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.pojo;
+ 
+ import com.alibaba.fastjson.annotation.JSONField;
+ import com.fasterxml.jackson.annotation.JsonIgnore;
+ import com.fasterxml.jackson.annotation.JsonProperty;
+ import lombok.AllArgsConstructor;
+ import lombok.Builder;
+ import lombok.Data;
+ import lombok.NoArgsConstructor;
+ 
+ import java.math.BigDecimal;
+ 
+ @NoArgsConstructor
+ @Data
+ public class User {
+ 
+     private Integer id;
+ 
+     private String username;
+ 
+     @JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
+     private String password;
+ 
+     private BigDecimal balance = BigDecimal.ZERO;
+ 
+     private String phone;
+ 
+     private String address;
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-8/index.html b/htmlReport/ns-8/index.html new file mode 100644 index 0000000..32da2b9 --- /dev/null +++ b/htmlReport/ns-8/index.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
Book + + 100% + + + (1/1) + + + + 100% + + + (20/20) + + + + 100% + + + (20/20) + +
LoginUser + + 100% + + + (1/1) + + + + 88.9% + + + (8/9) + + + + 88.9% + + + (8/9) + +
Order + + 100% + + + (2/2) + + + + 100% + + + (13/13) + + + + 100% + + + (13/13) + +
OrderStatus + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 84.6% + + + (11/13) + +
Store + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 80% + + + (4/5) + +
User + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 100% + + + (8/8) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-8/index_SORT_BY_BLOCK.html b/htmlReport/ns-8/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..fe20b5b --- /dev/null +++ b/htmlReport/ns-8/index_SORT_BY_BLOCK.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
Book + + 100% + + + (1/1) + + + + 100% + + + (20/20) + + + + 100% + + + (20/20) + +
LoginUser + + 100% + + + (1/1) + + + + 88.9% + + + (8/9) + + + + 88.9% + + + (8/9) + +
Order + + 100% + + + (2/2) + + + + 100% + + + (13/13) + + + + 100% + + + (13/13) + +
OrderStatus + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 84.6% + + + (11/13) + +
Store + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 80% + + + (4/5) + +
User + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 100% + + + (8/8) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-8/index_SORT_BY_BLOCK_DESC.html b/htmlReport/ns-8/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..d7cca1c --- /dev/null +++ b/htmlReport/ns-8/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
User + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 100% + + + (8/8) + +
Store + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 80% + + + (4/5) + +
OrderStatus + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 84.6% + + + (11/13) + +
Order + + 100% + + + (2/2) + + + + 100% + + + (13/13) + + + + 100% + + + (13/13) + +
LoginUser + + 100% + + + (1/1) + + + + 88.9% + + + (8/9) + + + + 88.9% + + + (8/9) + +
Book + + 100% + + + (1/1) + + + + 100% + + + (20/20) + + + + 100% + + + (20/20) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-8/index_SORT_BY_CLASS.html b/htmlReport/ns-8/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..9f96536 --- /dev/null +++ b/htmlReport/ns-8/index_SORT_BY_CLASS.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
Book + + 100% + + + (1/1) + + + + 100% + + + (20/20) + + + + 100% + + + (20/20) + +
LoginUser + + 100% + + + (1/1) + + + + 88.9% + + + (8/9) + + + + 88.9% + + + (8/9) + +
Order + + 100% + + + (2/2) + + + + 100% + + + (13/13) + + + + 100% + + + (13/13) + +
OrderStatus + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 84.6% + + + (11/13) + +
Store + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 80% + + + (4/5) + +
User + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 100% + + + (8/8) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-8/index_SORT_BY_CLASS_DESC.html b/htmlReport/ns-8/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..0863500 --- /dev/null +++ b/htmlReport/ns-8/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
User + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 100% + + + (8/8) + +
Store + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 80% + + + (4/5) + +
OrderStatus + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 84.6% + + + (11/13) + +
Order + + 100% + + + (2/2) + + + + 100% + + + (13/13) + + + + 100% + + + (13/13) + +
LoginUser + + 100% + + + (1/1) + + + + 88.9% + + + (8/9) + + + + 88.9% + + + (8/9) + +
Book + + 100% + + + (1/1) + + + + 100% + + + (20/20) + + + + 100% + + + (20/20) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-8/index_SORT_BY_LINE.html b/htmlReport/ns-8/index_SORT_BY_LINE.html new file mode 100644 index 0000000..e033a16 --- /dev/null +++ b/htmlReport/ns-8/index_SORT_BY_LINE.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
Store + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 80% + + + (4/5) + +
OrderStatus + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 84.6% + + + (11/13) + +
LoginUser + + 100% + + + (1/1) + + + + 88.9% + + + (8/9) + + + + 88.9% + + + (8/9) + +
Book + + 100% + + + (1/1) + + + + 100% + + + (20/20) + + + + 100% + + + (20/20) + +
Order + + 100% + + + (2/2) + + + + 100% + + + (13/13) + + + + 100% + + + (13/13) + +
User + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 100% + + + (8/8) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-8/index_SORT_BY_LINE_DESC.html b/htmlReport/ns-8/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..fd9d819 --- /dev/null +++ b/htmlReport/ns-8/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
User + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 100% + + + (8/8) + +
Order + + 100% + + + (2/2) + + + + 100% + + + (13/13) + + + + 100% + + + (13/13) + +
Book + + 100% + + + (1/1) + + + + 100% + + + (20/20) + + + + 100% + + + (20/20) + +
LoginUser + + 100% + + + (1/1) + + + + 88.9% + + + (8/9) + + + + 88.9% + + + (8/9) + +
OrderStatus + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 84.6% + + + (11/13) + +
Store + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 80% + + + (4/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-8/index_SORT_BY_METHOD.html b/htmlReport/ns-8/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..e86c091 --- /dev/null +++ b/htmlReport/ns-8/index_SORT_BY_METHOD.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
OrderStatus + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 84.6% + + + (11/13) + +
Store + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 80% + + + (4/5) + +
LoginUser + + 100% + + + (1/1) + + + + 88.9% + + + (8/9) + + + + 88.9% + + + (8/9) + +
Book + + 100% + + + (1/1) + + + + 100% + + + (20/20) + + + + 100% + + + (20/20) + +
Order + + 100% + + + (2/2) + + + + 100% + + + (13/13) + + + + 100% + + + (13/13) + +
User + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 100% + + + (8/8) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-8/index_SORT_BY_METHOD_DESC.html b/htmlReport/ns-8/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..e11c36c --- /dev/null +++ b/htmlReport/ns-8/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
User + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 100% + + + (8/8) + +
Order + + 100% + + + (2/2) + + + + 100% + + + (13/13) + + + + 100% + + + (13/13) + +
Book + + 100% + + + (1/1) + + + + 100% + + + (20/20) + + + + 100% + + + (20/20) + +
LoginUser + + 100% + + + (1/1) + + + + 88.9% + + + (8/9) + + + + 88.9% + + + (8/9) + +
Store + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 80% + + + (4/5) + +
OrderStatus + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 84.6% + + + (11/13) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-8/index_SORT_BY_NAME_DESC.html b/htmlReport/ns-8/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..5108bac --- /dev/null +++ b/htmlReport/ns-8/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo + + 100% + + + (7/7) + + + + 94.9% + + + (56/59) + + + + 94.1% + + + (64/68) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
User + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 100% + + + (8/8) + +
Store + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 80% + + + (4/5) + +
OrderStatus + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 84.6% + + + (11/13) + +
Order + + 100% + + + (2/2) + + + + 100% + + + (13/13) + + + + 100% + + + (13/13) + +
LoginUser + + 100% + + + (1/1) + + + + 88.9% + + + (8/9) + + + + 88.9% + + + (8/9) + +
Book + + 100% + + + (1/1) + + + + 100% + + + (20/20) + + + + 100% + + + (20/20) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-8/sources/source-1.html b/htmlReport/ns-8/sources/source-1.html new file mode 100644 index 0000000..97624d2 --- /dev/null +++ b/htmlReport/ns-8/sources/source-1.html @@ -0,0 +1,152 @@ + + + + + + + Coverage Report > Book + + + + + + +
+ + +

Coverage Summary for Class: Book (cn.edu.ecnu.stu.bookstore.pojo)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
Book + + 100% + + + (1/1) + + + + 100% + + + (20/20) + + + + 100% + + + (20/20) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.pojo;
+ 
+ import lombok.AllArgsConstructor;
+ import lombok.Data;
+ import lombok.NoArgsConstructor;
+ 
+ import java.math.BigDecimal;
+ import java.util.List;
+ 
+ @Data
+ @NoArgsConstructor
+ public class Book {
+ 
+     private String bookId;
+ 
+     private String storeId;
+ 
+     private String title;
+ 
+     private String author;
+ 
+     private String publisher;
+ 
+     private String originalTitle;
+ 
+     private String translator;
+ 
+     private String pubYear;
+ 
+     private Integer pages;
+ 
+     private BigDecimal price;
+ 
+     private String binding;
+ 
+     private String isbn;
+ 
+     private Integer stockLevel;
+ 
+     private List<String> tags;
+ 
+     private List<String> pictures;
+ 
+     private String authorIntro;
+ 
+     private String bookIntro;
+ 
+     private String content;
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-8/sources/source-2.html b/htmlReport/ns-8/sources/source-2.html new file mode 100644 index 0000000..f6cbb40 --- /dev/null +++ b/htmlReport/ns-8/sources/source-2.html @@ -0,0 +1,158 @@ + + + + + + + Coverage Report > LoginUser + + + + + + +
+ + +

Coverage Summary for Class: LoginUser (cn.edu.ecnu.stu.bookstore.pojo)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
LoginUser + + 100% + + + (1/1) + + + + 88.9% + + + (8/9) + + + + 88.9% + + + (8/9) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.pojo;
+ 
+ import lombok.AllArgsConstructor;
+ import lombok.Data;
+ import lombok.NoArgsConstructor;
+ import org.springframework.security.core.GrantedAuthority;
+ import org.springframework.security.core.userdetails.UserDetails;
+ 
+ import java.io.Serializable;
+ import java.util.Collection;
+ 
+ @AllArgsConstructor
+ public class LoginUser implements UserDetails {
+ 
+     private User user;
+ 
+     @Override
+     public Collection<? extends GrantedAuthority> getAuthorities() {
+         return null;
+     }
+ 
+     @Override
+     public String getPassword() {
+         return user.getPassword();
+     }
+ 
+     @Override
+     public String getUsername() {
+         return user.getUsername();
+     }
+ 
+     @Override
+     public boolean isAccountNonExpired() {
+         return true;
+     }
+ 
+     @Override
+     public boolean isAccountNonLocked() {
+         return true;
+     }
+ 
+     @Override
+     public boolean isCredentialsNonExpired() {
+         return true;
+     }
+ 
+     @Override
+     public boolean isEnabled() {
+         return true;
+     }
+ 
+     public User getUser() {
+         return user;
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-8/sources/source-3.html b/htmlReport/ns-8/sources/source-3.html new file mode 100644 index 0000000..96c0003 --- /dev/null +++ b/htmlReport/ns-8/sources/source-3.html @@ -0,0 +1,161 @@ + + + + + + + Coverage Report > Order + + + + + + +
+ + +

Coverage Summary for Class: Order (cn.edu.ecnu.stu.bookstore.pojo)

+ + + + + + + + + + + + + + + + + + + + + + + +
Class + Method, % + + Line, % +
Order + + 100% + + + (12/12) + + + + 100% + + + (12/12) + +
Order$OrderBuilder + + 100% + + + (1/1) + + + + 100% + + + (1/1) + +
Total + + 100% + + + (13/13) + + + + 100% + + + (13/13) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.pojo;
+ 
+ import lombok.AllArgsConstructor;
+ import lombok.Builder;
+ import lombok.Data;
+ import lombok.NoArgsConstructor;
+ 
+ import java.math.BigDecimal;
+ import java.sql.Date;
+ 
+ @Data
+ @NoArgsConstructor
+ @AllArgsConstructor
+ @Builder
+ public class Order {
+ 
+     private String orderId;
+ 
+     private Integer buyerId;
+ 
+     private String fromAddress;
+ 
+     private String toAddress;
+ 
+     private BigDecimal price;
+ 
+     private OrderStatus status;
+ 
+     private String storeId;
+ 
+     private Date createTime;
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-8/sources/source-4.html b/htmlReport/ns-8/sources/source-4.html new file mode 100644 index 0000000..096970d --- /dev/null +++ b/htmlReport/ns-8/sources/source-4.html @@ -0,0 +1,135 @@ + + + + + + + Coverage Report > OrderStatus + + + + + + +
+ + +

Coverage Summary for Class: OrderStatus (cn.edu.ecnu.stu.bookstore.pojo)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
OrderStatus + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 84.6% + + + (11/13) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.pojo;
+ 
+ import lombok.AllArgsConstructor;
+ import lombok.NoArgsConstructor;
+ 
+ @NoArgsConstructor
+ @AllArgsConstructor
+ public enum OrderStatus{
+     WAIT_PAYMENT(0),
+     WAIT_SEND(1),
+     WAIT_RECEIVE(2),
+     COMPLETED(3),
+     CANCEL(4);
+ 
+     private int value;
+ 
+     public int getValue() {
+         return value;
+     }
+ 
+     public void setValue(int value) {
+         this.value = value;
+     }
+ 
+     public static OrderStatus getByValue(int val) {
+         for(OrderStatus status : values()) {
+             if(status.value == val)
+                 return status;
+         }
+         return null;
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-8/sources/source-5.html b/htmlReport/ns-8/sources/source-5.html new file mode 100644 index 0000000..ce4d0ac --- /dev/null +++ b/htmlReport/ns-8/sources/source-5.html @@ -0,0 +1,121 @@ + + + + + + + Coverage Report > Store + + + + + + +
+ + +

Coverage Summary for Class: Store (cn.edu.ecnu.stu.bookstore.pojo)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
Store + + 100% + + + (1/1) + + + + 80% + + + (4/5) + + + + 80% + + + (4/5) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.pojo;
+ 
+ import lombok.AllArgsConstructor;
+ import lombok.Data;
+ import lombok.NoArgsConstructor;
+ 
+ import java.sql.Date;
+ 
+ @Data
+ @NoArgsConstructor
+ public class Store {
+ 
+     private String storeId;
+ 
+     private int sellerId;
+ 
+     private Date createTime;
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-8/sources/source-6.html b/htmlReport/ns-8/sources/source-6.html new file mode 100644 index 0000000..ca1958e --- /dev/null +++ b/htmlReport/ns-8/sources/source-6.html @@ -0,0 +1,132 @@ + + + + + + + Coverage Report > User + + + + + + +
+ + +

Coverage Summary for Class: User (cn.edu.ecnu.stu.bookstore.pojo)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
User + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 100% + + + (8/8) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.pojo;
+ 
+ import com.alibaba.fastjson.annotation.JSONField;
+ import com.fasterxml.jackson.annotation.JsonIgnore;
+ import com.fasterxml.jackson.annotation.JsonProperty;
+ import lombok.AllArgsConstructor;
+ import lombok.Builder;
+ import lombok.Data;
+ import lombok.NoArgsConstructor;
+ 
+ import java.math.BigDecimal;
+ 
+ @NoArgsConstructor
+ @Data
+ public class User {
+ 
+     private Integer id;
+ 
+     private String username;
+ 
+     @JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
+     private String password;
+ 
+     private BigDecimal balance = BigDecimal.ZERO;
+ 
+     private String phone;
+ 
+     private String address;
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-9/index.html b/htmlReport/ns-9/index.html new file mode 100644 index 0000000..65edc6c --- /dev/null +++ b/htmlReport/ns-9/index.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo.vo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo.vo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
NewOrderVO + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-9/index_SORT_BY_BLOCK.html b/htmlReport/ns-9/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..fdcd709 --- /dev/null +++ b/htmlReport/ns-9/index_SORT_BY_BLOCK.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo.vo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo.vo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
NewOrderVO + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-9/index_SORT_BY_BLOCK_DESC.html b/htmlReport/ns-9/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..7694180 --- /dev/null +++ b/htmlReport/ns-9/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo.vo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo.vo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
NewOrderVO + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-9/index_SORT_BY_CLASS.html b/htmlReport/ns-9/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..adbb003 --- /dev/null +++ b/htmlReport/ns-9/index_SORT_BY_CLASS.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo.vo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo.vo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
NewOrderVO + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-9/index_SORT_BY_CLASS_DESC.html b/htmlReport/ns-9/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..26b7d1c --- /dev/null +++ b/htmlReport/ns-9/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo.vo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo.vo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
NewOrderVO + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-9/index_SORT_BY_LINE.html b/htmlReport/ns-9/index_SORT_BY_LINE.html new file mode 100644 index 0000000..b8c9974 --- /dev/null +++ b/htmlReport/ns-9/index_SORT_BY_LINE.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo.vo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo.vo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
NewOrderVO + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-9/index_SORT_BY_LINE_DESC.html b/htmlReport/ns-9/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..4767c8a --- /dev/null +++ b/htmlReport/ns-9/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo.vo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo.vo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
NewOrderVO + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-9/index_SORT_BY_METHOD.html b/htmlReport/ns-9/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..52ac92f --- /dev/null +++ b/htmlReport/ns-9/index_SORT_BY_METHOD.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo.vo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo.vo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
NewOrderVO + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-9/index_SORT_BY_METHOD_DESC.html b/htmlReport/ns-9/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..2d8398e --- /dev/null +++ b/htmlReport/ns-9/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo.vo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo.vo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
NewOrderVO + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-9/index_SORT_BY_NAME_DESC.html b/htmlReport/ns-9/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..53b8f7a --- /dev/null +++ b/htmlReport/ns-9/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,142 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.pojo.vo + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.pojo.vo

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.pojo.vo + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+
+ + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
NewOrderVO + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-9/sources/source-1.html b/htmlReport/ns-9/sources/source-1.html new file mode 100644 index 0000000..9db23ae --- /dev/null +++ b/htmlReport/ns-9/sources/source-1.html @@ -0,0 +1,120 @@ + + + + + + + Coverage Report > NewOrderVO + + + + + + +
+ + +

Coverage Summary for Class: NewOrderVO (cn.edu.ecnu.stu.bookstore.pojo.vo)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
NewOrderVO + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 100% + + + (4/4) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.pojo.vo;
+ 
+ import lombok.AllArgsConstructor;
+ import lombok.Data;
+ import lombok.NoArgsConstructor;
+ 
+ import java.util.List;
+ import java.util.Map;
+ 
+ @Data
+ @NoArgsConstructor
+ public class NewOrderVO {
+ 
+     private String storeId;
+ 
+     private List<Map<String, Object>> books;
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-9/sources/source-2.html b/htmlReport/ns-9/sources/source-2.html new file mode 100644 index 0000000..250cdde --- /dev/null +++ b/htmlReport/ns-9/sources/source-2.html @@ -0,0 +1,266 @@ + + + + + + + Coverage Report > BuyerService + + + + + + +
+ + +

Coverage Summary for Class: BuyerService (cn.edu.ecnu.stu.bookstore.service.impl)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class + Method, % + + Line, % +
BuyerService + + 100% + + + (9/9) + + + + 84.5% + + + (60/71) + +
BuyerService$$EnhancerBySpringCGLIB$$7b9f9cbc
BuyerService$$EnhancerBySpringCGLIB$$7b9f9cbc$$FastClassBySpringCGLIB$$3da5d183
BuyerService$$EnhancerBySpringCGLIB$$f0753e75
BuyerService$$EnhancerBySpringCGLIB$$f0753e75$$FastClassBySpringCGLIB$$f4e692b8
BuyerService$$FastClassBySpringCGLIB$$f1ad8679
Total + + 100% + + + (9/9) + + + + 84.5% + + + (60/71) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.service.impl;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.mapper.BookMapper;
+ import cn.edu.ecnu.stu.bookstore.mapper.OrderMapper;
+ import cn.edu.ecnu.stu.bookstore.mapper.StoreMapper;
+ import cn.edu.ecnu.stu.bookstore.mapper.UserMapper;
+ import cn.edu.ecnu.stu.bookstore.pojo.*;
+ import cn.edu.ecnu.stu.bookstore.pojo.vo.NewOrderVO;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.context.annotation.Lazy;
+ import org.springframework.security.core.context.SecurityContextHolder;
+ import org.springframework.security.crypto.password.PasswordEncoder;
+ import org.springframework.stereotype.Service;
+ import org.springframework.transaction.annotation.Transactional;
+ 
+ import java.math.BigDecimal;
+ import java.util.*;
+ import java.util.stream.Collectors;
+ 
+ @Service
+ public class BuyerService {
+ 
+     @Autowired
+     private BookMapper bookMapper;
+ 
+     @Autowired
+     private OrderMapper orderMapper;
+ 
+     @Autowired
+     private UserMapper userMapper;
+ 
+     @Autowired
+     private StoreMapper storeMapper;
+ 
+     @Autowired
+     private PasswordEncoder encoder;
+ 
+     @Autowired
+     @Lazy
+     private BuyerService buyerService;
+ 
+     public void newOrder(NewOrderVO newOrderVO) {
+         List<Map<String, Object>> bookList = newOrderVO.getBooks();
+         if(bookList.size() < 1)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.ORDER_IS_NULL_ERROR);
+         HashMap<String, Integer> bookMap = new HashMap<>();
+         for(Map<String, Object> map : bookList) {
+             bookMap.put((String) map.get("id"), (Integer) map.get("count"));
+         }
+         String storeId = newOrderVO.getStoreId();
+         Store store = storeMapper.getStoreById(storeId);
+         if(store == null)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.STORE_NON_EXIST_ERROR);
+ 
+         buyerService.insertOrder(store, bookMap, bookList);
+     }
+ 
+     @Transactional
+     public void insertOrder(Store store, HashMap<String, Integer> bookMap, List<Map<String, Object>> bookList) {
+         String storeId = store.getStoreId();
+         List<Book> books = bookMapper.batchSelect(storeId, bookMap.keySet());
+         if(books.size() != bookList.size())
+             throw new AppException(Constants.CLIENT_ERROR, Constants.BOOK_ERROR);
+         List<Map<String, Object>> list = books.stream().map(book -> {
+             int count = bookMap.get(book.getBookId());
+             if(count > book.getStockLevel())
+                 throw new AppException(Constants.CLIENT_ERROR, Constants.STOCK_LEVEL_ERROR);
+             Map<String, Object> map = new HashMap<>();
+             map.put("count", count);
+             map.put("book", book);
+             return map;
+         }).collect(Collectors.toList());
+         BigDecimal sum = new BigDecimal(0);
+         for(Book book : books) {
+             sum = sum.add(book.getPrice().multiply(BigDecimal.valueOf(bookMap.get(book.getBookId()))));
+         }
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         String orderId = UUID.randomUUID().toString();
+         Order order = Order.builder().orderId(orderId).buyerId(user.getId()).storeId(storeId)
+                         .price(sum).status(OrderStatus.WAIT_PAYMENT)
+                         .build();
+         orderMapper.insert(order);
+         orderMapper.insertOrderBook(orderId, list);
+         for (Map<String, Object> map : list) {
+             Book book = (Book)map.get("book");
+             bookMapper.minusStockLevel(book.getBookId(), (int)map.get("count"));
+         }
+     }
+ 
+     public void payment(Integer userId, String orderId, String password) {
+         User user = userMapper.selectOneById(userId);
+         if(!encoder.matches(password, user.getPassword()))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PASSWORD_ERROR);
+         Order order = orderMapper.selectById(orderId);
+         if(order == null)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.ORDER_NON_EXIST_ERROR);
+         if(!order.getStatus().equals(OrderStatus.WAIT_PAYMENT))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.ORDER_HAS_PAID_ERROR);
+         if(order.getPrice().compareTo(user.getBalance()) > 0)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.BALANCE_ERROR);
+         buyerService.updateBalanceAndOrder(storeMapper.getStoreById(order.getStoreId()).getSellerId(), order);
+     }
+ 
+     @Transactional
+     public void updateBalanceAndOrder(Integer sellerId, Order order) {
+         orderMapper.updateOrderStatus(order.getOrderId(), OrderStatus.WAIT_SEND);
+         BigDecimal price = order.getPrice();
+         userMapper.minusBalance(order.getBuyerId(), price);
+         userMapper.addBalance(sellerId, price);
+     }
+ 
+     public void addFunds(String username, String password, BigDecimal addValue) {
+         User user = userMapper.selectOneByName(username);
+         if(!encoder.matches(password, user.getPassword()))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PASSWORD_ERROR);
+         userMapper.addBalance(user.getId(), addValue);
+ 
+     }
+ 
+     public List<Order> getOrderList() {
+         User user = (User)SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         return orderMapper.select(user.getId(), OrderStatus.WAIT_PAYMENT);
+ 
+     }
+ 
+ 
+     public void takeDelivery(String orderId) {
+         Order order = orderMapper.selectById(orderId);
+         if(order == null)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.ORDER_NON_EXIST_ERROR);
+         User user = (User)SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         if(!order.getBuyerId().equals(user.getId()))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.AUTHORITY_ERROR);
+         if(!order.getStatus().equals(OrderStatus.WAIT_RECEIVE))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.STATUS_ERROR);
+         orderMapper.updateOrderStatus(orderId, OrderStatus.COMPLETED);
+ 
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-9/sources/source-3.html b/htmlReport/ns-9/sources/source-3.html new file mode 100644 index 0000000..a31eef9 --- /dev/null +++ b/htmlReport/ns-9/sources/source-3.html @@ -0,0 +1,140 @@ + + + + + + + Coverage Report > OrderService + + + + + + +
+ + +

Coverage Summary for Class: OrderService (cn.edu.ecnu.stu.bookstore.service.impl)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
OrderService + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 87.5% + + + (7/8) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.service.impl;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.mapper.OrderMapper;
+ import cn.edu.ecnu.stu.bookstore.pojo.Order;
+ import cn.edu.ecnu.stu.bookstore.pojo.OrderStatus;
+ import cn.edu.ecnu.stu.bookstore.pojo.User;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.security.core.context.SecurityContextHolder;
+ import org.springframework.stereotype.Service;
+ import org.springframework.web.bind.annotation.RequestParam;
+ 
+ import java.util.List;
+ 
+ @Service
+ public class OrderService {
+ 
+     @Autowired
+     private OrderMapper orderMapper;
+ 
+     public List<Order> getOrderList(Integer status) {
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         return orderMapper.select(user.getId(), status == null ? null : OrderStatus.getByValue(status));
+     }
+ 
+     public void cancelOrder(String orderId) {
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         if(orderMapper.checkOrder(orderId, user.getId()) != 1)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.AUTHORITY_ERROR);
+         orderMapper.updateOrderStatus(orderId, OrderStatus.CANCEL);
+     }
+ 
+     public void add(Order order) {
+         orderMapper.insert(order);
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-9/sources/source-4.html b/htmlReport/ns-9/sources/source-4.html new file mode 100644 index 0000000..12062e9 --- /dev/null +++ b/htmlReport/ns-9/sources/source-4.html @@ -0,0 +1,209 @@ + + + + + + + Coverage Report > SellerServiceImpl + + + + + + +
+ + +

Coverage Summary for Class: SellerServiceImpl (cn.edu.ecnu.stu.bookstore.service.impl)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class + Method, % + + Line, % +
SellerServiceImpl + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
SellerServiceImpl$$EnhancerBySpringCGLIB$$bde21f67
SellerServiceImpl$$EnhancerBySpringCGLIB$$bde21f67$$FastClassBySpringCGLIB$$7aafdbf
SellerServiceImpl$$FastClassBySpringCGLIB$$907e56df
Total + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.service.impl;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.mapper.BookMapper;
+ import cn.edu.ecnu.stu.bookstore.mapper.OrderMapper;
+ import cn.edu.ecnu.stu.bookstore.mapper.StoreMapper;
+ import cn.edu.ecnu.stu.bookstore.pojo.*;
+ import cn.edu.ecnu.stu.bookstore.service.SellerService;
+ import cn.edu.ecnu.stu.bookstore.utils.ImageUtil;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.context.annotation.Lazy;
+ import org.springframework.security.core.context.SecurityContextHolder;
+ import org.springframework.stereotype.Service;
+ import org.springframework.transaction.annotation.Transactional;
+ 
+ import java.util.List;
+ import java.util.stream.Collectors;
+ 
+ @Service
+ public class SellerServiceImpl implements SellerService {
+ 
+     @Autowired
+     private StoreMapper storeMapper;
+ 
+     @Autowired
+     private BookMapper bookMapper;
+ 
+     @Autowired
+     private OrderMapper orderMapper;
+ 
+     @Autowired
+     @Lazy
+     private SellerService sellerService;
+ 
+     public void createStore(Store store) {
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         store.setSellerId(user.getId());
+         if(storeMapper.checkStoreExist(store.getStoreId()) != 0)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.STORE_ID_ERROR);
+         storeMapper.insert(store);
+     }
+ 
+     public void addBook(Book book) {
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         int userId = user.getId();
+         if(storeMapper.checkStore(userId, book.getStoreId()) == 0)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.STORE_NON_EXIST_ERROR);
+ 
+         List<String> tags = book.getTags();
+         List<String> pictures = book.getPictures();
+         pictures = pictures.stream().map(ImageUtil::convertBase64StrToImage).collect(Collectors.toList());
+         sellerService.insertBook(book, tags, pictures);
+     }
+ 
+     @Transactional
+     public void insertBook(Book book, List<String> tags, List<String> pictures) {
+         bookMapper.insert(book);
+         bookMapper.insertBookDetail(book);
+         bookMapper.insertTags(book.getBookId(), tags);
+         bookMapper.insertPictures(book.getBookId(), pictures);
+     }
+ 
+     @Override
+     public void addStockLevel(String storeId, String bookId, int addStockLevel) {
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         int userId = user.getId();
+         if(storeMapper.checkStore(userId, storeId) == 0)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.STORE_NON_EXIST_ERROR);
+ 
+         if(bookMapper.checkBook(storeId, bookId) == 0)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.BOOK_ERROR);
+         bookMapper.addStockLevel(storeId, bookId, addStockLevel);
+     }
+ 
+     @Override
+     public void sendGoods(String orderId) {
+         Order order = orderMapper.selectById(orderId);
+         if(order == null)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.ORDER_NON_EXIST_ERROR);
+         String storeId = order.getStoreId();
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         if(storeMapper.checkStore(user.getId(), storeId) != 1)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.AUTHORITY_ERROR);
+         if(!order.getStatus().equals(OrderStatus.WAIT_SEND))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.STATUS_ERROR);
+         orderMapper.updateOrderStatus(orderId, OrderStatus.WAIT_RECEIVE);
+     }
+ 
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-9/sources/source-5.html b/htmlReport/ns-9/sources/source-5.html new file mode 100644 index 0000000..0677c9b --- /dev/null +++ b/htmlReport/ns-9/sources/source-5.html @@ -0,0 +1,130 @@ + + + + + + + Coverage Report > UserDetailsServiceImpl + + + + + + +
+ + +

Coverage Summary for Class: UserDetailsServiceImpl (cn.edu.ecnu.stu.bookstore.service.impl)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
UserDetailsServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.service.impl;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.pojo.LoginUser;
+ import cn.edu.ecnu.stu.bookstore.pojo.User;
+ import cn.edu.ecnu.stu.bookstore.service.UserService;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.security.core.userdetails.UserDetails;
+ import org.springframework.security.core.userdetails.UserDetailsService;
+ import org.springframework.security.core.userdetails.UsernameNotFoundException;
+ import org.springframework.stereotype.Service;
+ 
+ @Service
+ public class UserDetailsServiceImpl implements UserDetailsService {
+ 
+     @Autowired
+     private UserService userService;
+ 
+     @Override
+     public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
+         User user = userService.selectUserByName(username);
+         if(user == null)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         return new LoginUser(user);
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-9/sources/source-6.html b/htmlReport/ns-9/sources/source-6.html new file mode 100644 index 0000000..8483f7e --- /dev/null +++ b/htmlReport/ns-9/sources/source-6.html @@ -0,0 +1,193 @@ + + + + + + + Coverage Report > UserServiceImpl + + + + + + +
+ + +

Coverage Summary for Class: UserServiceImpl (cn.edu.ecnu.stu.bookstore.service.impl)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
UserServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 87.5% + + + (28/32) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.service.impl;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.mapper.UserMapper;
+ import cn.edu.ecnu.stu.bookstore.pojo.LoginUser;
+ import cn.edu.ecnu.stu.bookstore.pojo.User;
+ import cn.edu.ecnu.stu.bookstore.service.UserService;
+ import cn.edu.ecnu.stu.bookstore.utils.JwtUtil;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.data.redis.core.RedisTemplate;
+ import org.springframework.security.authentication.AuthenticationManager;
+ import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
+ import org.springframework.security.core.Authentication;
+ import org.springframework.security.core.context.SecurityContextHolder;
+ import org.springframework.security.crypto.password.PasswordEncoder;
+ import org.springframework.stereotype.Service;
+ import org.springframework.util.StringUtils;
+ 
+ import java.util.HashMap;
+ import java.util.Map;
+ import java.util.concurrent.TimeUnit;
+ 
+ @Service
+ public class UserServiceImpl implements UserService {
+ 
+     @Autowired
+     private UserMapper userMapper;
+ 
+     @Autowired
+     private AuthenticationManager authenticationManager;
+ 
+     @Autowired
+     private PasswordEncoder passwordEncoder;
+ 
+     @Autowired
+     private RedisTemplate redisTemplate;
+ 
+     public void register(User user) {
+         if(!StringUtils.hasLength(user.getUsername()))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         if(userMapper.checkUserByUsername(user.getUsername()) != 0)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.REGISTER_ERROR_MESSAGE);
+         String encoded = passwordEncoder.encode(user.getPassword());
+         user.setPassword(encoded);
+         userMapper.insert(user);
+     }
+ 
+     public void unregister(User user) {
+         User user1 = userMapper.selectOneByName(user.getUsername());
+         if(user1 == null || !passwordEncoder.matches(user.getPassword(), user1.getPassword())) {
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PASSWORD_ERROR);
+         }
+         userMapper.deleteByName(user.getUsername());
+     }
+ 
+     public User selectUserByName(String username) {
+         return userMapper.selectOneByName(username);
+     }
+ 
+     public Map<String, Object> login(User user) {
+         UsernamePasswordAuthenticationToken token = new UsernamePasswordAuthenticationToken(user.getUsername(), user.getPassword());
+         Authentication authenticate = authenticationManager.authenticate(token);
+         LoginUser loginUser = (LoginUser)authenticate.getPrincipal();
+         User user1 = loginUser.getUser();
+         redisTemplate.opsForValue().set("userId:" + user1.getId(), "1", 1, TimeUnit.DAYS);
+         Map<String, Object> map = new HashMap<>();
+         map.put("token", JwtUtil.getToken(user1));
+         map.put("user", user1);
+         return map;
+     }
+ 
+     public void logout(String username) {
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         if(!user.getUsername().equals(username)) {
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         }
+         redisTemplate.delete("userId:" + user.getId());
+     }
+ 
+     public void changePassword(String username, String oldPassword, String newPassword) {
+         User user = userMapper.selectOneByName(username);
+         if(user == null || !passwordEncoder.matches(oldPassword, user.getPassword())){
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PASSWORD_ERROR);
+         }
+         newPassword = passwordEncoder.encode(newPassword);
+         userMapper.updatePassword(username, newPassword);
+         redisTemplate.delete("userId:" + user.getId());
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-a/index.html b/htmlReport/ns-a/index.html new file mode 100644 index 0000000..077b2b6 --- /dev/null +++ b/htmlReport/ns-a/index.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service.impl + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service.impl

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookService + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
BuyerService + + 100% + + + (1/1) + + + + 100% + + + (10/10) + + + + 85.1% + + + (63/74) + +
OrderService + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 87.5% + + + (7/8) + +
SellerServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
UserDetailsServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
UserServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 87.5% + + + (28/32) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-a/index_SORT_BY_BLOCK.html b/htmlReport/ns-a/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..c7e6529 --- /dev/null +++ b/htmlReport/ns-a/index_SORT_BY_BLOCK.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service.impl + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service.impl

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookService + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
BuyerService + + 100% + + + (1/1) + + + + 100% + + + (10/10) + + + + 85.1% + + + (63/74) + +
OrderService + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 87.5% + + + (7/8) + +
SellerServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
UserDetailsServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
UserServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 87.5% + + + (28/32) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-a/index_SORT_BY_BLOCK_DESC.html b/htmlReport/ns-a/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..e8a95ed --- /dev/null +++ b/htmlReport/ns-a/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service.impl + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service.impl

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
UserServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 87.5% + + + (28/32) + +
UserDetailsServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
SellerServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
OrderService + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 87.5% + + + (7/8) + +
BuyerService + + 100% + + + (1/1) + + + + 100% + + + (10/10) + + + + 85.1% + + + (63/74) + +
BookService + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-a/index_SORT_BY_CLASS.html b/htmlReport/ns-a/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..11244e5 --- /dev/null +++ b/htmlReport/ns-a/index_SORT_BY_CLASS.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service.impl + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service.impl

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookService + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
BuyerService + + 100% + + + (1/1) + + + + 100% + + + (10/10) + + + + 85.1% + + + (63/74) + +
OrderService + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 87.5% + + + (7/8) + +
SellerServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
UserDetailsServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
UserServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 87.5% + + + (28/32) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-a/index_SORT_BY_CLASS_DESC.html b/htmlReport/ns-a/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..96b3123 --- /dev/null +++ b/htmlReport/ns-a/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service.impl + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service.impl

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
UserServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 87.5% + + + (28/32) + +
UserDetailsServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
SellerServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
OrderService + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 87.5% + + + (7/8) + +
BuyerService + + 100% + + + (1/1) + + + + 100% + + + (10/10) + + + + 85.1% + + + (63/74) + +
BookService + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-a/index_SORT_BY_LINE.html b/htmlReport/ns-a/index_SORT_BY_LINE.html new file mode 100644 index 0000000..0733530 --- /dev/null +++ b/htmlReport/ns-a/index_SORT_BY_LINE.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service.impl + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service.impl

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
SellerServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
BuyerService + + 100% + + + (1/1) + + + + 100% + + + (10/10) + + + + 85.1% + + + (63/74) + +
OrderService + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 87.5% + + + (7/8) + +
UserServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 87.5% + + + (28/32) + +
BookService + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
UserDetailsServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-a/index_SORT_BY_LINE_DESC.html b/htmlReport/ns-a/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..7582583 --- /dev/null +++ b/htmlReport/ns-a/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service.impl + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service.impl

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
UserDetailsServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
BookService + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
UserServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 87.5% + + + (28/32) + +
OrderService + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 87.5% + + + (7/8) + +
BuyerService + + 100% + + + (1/1) + + + + 100% + + + (10/10) + + + + 85.1% + + + (63/74) + +
SellerServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-a/index_SORT_BY_METHOD.html b/htmlReport/ns-a/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..08b3611 --- /dev/null +++ b/htmlReport/ns-a/index_SORT_BY_METHOD.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service.impl + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service.impl

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
BookService + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
BuyerService + + 100% + + + (1/1) + + + + 100% + + + (10/10) + + + + 85.1% + + + (63/74) + +
OrderService + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 87.5% + + + (7/8) + +
SellerServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
UserDetailsServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
UserServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 87.5% + + + (28/32) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-a/index_SORT_BY_METHOD_DESC.html b/htmlReport/ns-a/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..961cacf --- /dev/null +++ b/htmlReport/ns-a/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service.impl + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service.impl

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
UserServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 87.5% + + + (28/32) + +
UserDetailsServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
SellerServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
OrderService + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 87.5% + + + (7/8) + +
BuyerService + + 100% + + + (1/1) + + + + 100% + + + (10/10) + + + + 85.1% + + + (63/74) + +
BookService + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-a/index_SORT_BY_NAME_DESC.html b/htmlReport/ns-a/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..3867199 --- /dev/null +++ b/htmlReport/ns-a/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,277 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service.impl + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service.impl

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.service.impl + + 100% + + + (6/6) + + + + 100% + + + (35/35) + + + + 86.8% + + + (145/167) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
UserServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 87.5% + + + (28/32) + +
UserDetailsServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
SellerServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
OrderService + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 87.5% + + + (7/8) + +
BuyerService + + 100% + + + (1/1) + + + + 100% + + + (10/10) + + + + 85.1% + + + (63/74) + +
BookService + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-a/sources/source-1.html b/htmlReport/ns-a/sources/source-1.html new file mode 100644 index 0000000..87c70cd --- /dev/null +++ b/htmlReport/ns-a/sources/source-1.html @@ -0,0 +1,150 @@ + + + + + + + Coverage Report > BookService + + + + + + +
+ + +

Coverage Summary for Class: BookService (cn.edu.ecnu.stu.bookstore.service.impl)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
BookService + + 100% + + + (1/1) + + + + 100% + + + (6/6) + + + + 100% + + + (13/13) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.service.impl;
+ 
+ import cn.edu.ecnu.stu.bookstore.mapper.BookMapper;
+ import cn.edu.ecnu.stu.bookstore.pojo.Book;
+ import cn.edu.ecnu.stu.bookstore.utils.ImageUtil;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.stereotype.Service;
+ 
+ import java.util.List;
+ import java.util.stream.Collectors;
+ 
+ @Service
+ public class BookService {
+ 
+     @Autowired
+     private BookMapper bookMapper;
+ 
+     private List<Book> switchPicture(List<Book> books) {
+         for (Book book : books) {
+             book.setPictures(book.getPictures().stream().map(ImageUtil::convertImageToBase64Str).collect(Collectors.toList()));
+         }
+         return books;
+     }
+ 
+     public List<Book> getBookByTitle(String title, String storeId, Integer pageNum, Integer pageSize) {
+         int start = (pageNum - 1) * pageSize;
+         return switchPicture(bookMapper.getBookByTitle(title, storeId, start, pageSize));
+     }
+ 
+     public List<Book> getBookByAuthor(String author, String storeId, Integer pageNum, Integer pageSize) {
+         int start = (pageNum - 1) * pageSize;
+         return switchPicture(bookMapper.getBookByAuthor(author, storeId, start, pageSize));
+ 
+     }
+ 
+     public List<Book> getBookByTag(String tag, String storeId, Integer pageNum, Integer pageSize) {
+         int start = (pageNum - 1) * pageSize;
+         return switchPicture(bookMapper.getBookByTag(tag, storeId, start, pageSize));
+ 
+     }
+ 
+     public List<Book> getBookByContent(String content, String storeId, Integer pageNum, Integer pageSize) {
+         int start = (pageNum - 1) * pageSize;
+         return switchPicture(bookMapper.getBookByContent(content, storeId, start, pageSize));
+ 
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-a/sources/source-2.html b/htmlReport/ns-a/sources/source-2.html new file mode 100644 index 0000000..c23ea1c --- /dev/null +++ b/htmlReport/ns-a/sources/source-2.html @@ -0,0 +1,276 @@ + + + + + + + Coverage Report > BuyerService + + + + + + +
+ + +

Coverage Summary for Class: BuyerService (cn.edu.ecnu.stu.bookstore.service.impl)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class + Method, % + + Line, % +
BuyerService + + 100% + + + (10/10) + + + + 85.1% + + + (63/74) + +
BuyerService$$EnhancerBySpringCGLIB$$7b9f9cbc
BuyerService$$EnhancerBySpringCGLIB$$7b9f9cbc$$FastClassBySpringCGLIB$$3da5d183
BuyerService$$EnhancerBySpringCGLIB$$ed30e237
BuyerService$$EnhancerBySpringCGLIB$$ed30e237$$FastClassBySpringCGLIB$$44c591ad
BuyerService$$FastClassBySpringCGLIB$$f1ad8679
Total + + 100% + + + (10/10) + + + + 85.1% + + + (63/74) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.service.impl;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.config.RabbitMqConfig;
+ import cn.edu.ecnu.stu.bookstore.mapper.BookMapper;
+ import cn.edu.ecnu.stu.bookstore.mapper.OrderMapper;
+ import cn.edu.ecnu.stu.bookstore.mapper.StoreMapper;
+ import cn.edu.ecnu.stu.bookstore.mapper.UserMapper;
+ import cn.edu.ecnu.stu.bookstore.pojo.*;
+ import cn.edu.ecnu.stu.bookstore.pojo.vo.NewOrderVO;
+ import org.springframework.amqp.rabbit.core.RabbitTemplate;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.context.annotation.Lazy;
+ import org.springframework.security.core.context.SecurityContextHolder;
+ import org.springframework.security.crypto.password.PasswordEncoder;
+ import org.springframework.stereotype.Service;
+ import org.springframework.transaction.annotation.Transactional;
+ 
+ import java.math.BigDecimal;
+ import java.util.*;
+ import java.util.stream.Collectors;
+ 
+ @Service
+ public class BuyerService {
+ 
+     @Autowired
+     private BookMapper bookMapper;
+ 
+     @Autowired
+     private OrderMapper orderMapper;
+ 
+     @Autowired
+     private UserMapper userMapper;
+ 
+     @Autowired
+     private StoreMapper storeMapper;
+ 
+     @Autowired
+     private PasswordEncoder encoder;
+ 
+     @Autowired
+     @Lazy
+     private BuyerService buyerService;
+ 
+     @Autowired
+     private RabbitTemplate rabbitTemplate;
+ 
+     public void newOrder(NewOrderVO newOrderVO) {
+         List<Map<String, Object>> bookList = newOrderVO.getBooks();
+         if(bookList.size() < 1)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.ORDER_IS_NULL_ERROR);
+         HashMap<String, Integer> bookMap = new HashMap<>();
+         for(Map<String, Object> map : bookList) {
+             bookMap.put((String) map.get("id"), (Integer) map.get("count"));
+         }
+         String storeId = newOrderVO.getStoreId();
+         Store store = storeMapper.getStoreById(storeId);
+         if(store == null)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.STORE_NON_EXIST_ERROR);
+ 
+         buyerService.insertOrder(store, bookMap, bookList);
+     }
+ 
+     @Transactional
+     public void insertOrder(Store store, HashMap<String, Integer> bookMap, List<Map<String, Object>> bookList) {
+         String storeId = store.getStoreId();
+         List<Book> books = bookMapper.batchSelect(storeId, bookMap.keySet());
+         if(books.size() != bookList.size())
+             throw new AppException(Constants.CLIENT_ERROR, Constants.BOOK_ERROR);
+         List<Map<String, Object>> list = books.stream().map(book -> {
+             int count = bookMap.get(book.getBookId());
+             if(count > book.getStockLevel())
+                 throw new AppException(Constants.CLIENT_ERROR, Constants.STOCK_LEVEL_ERROR);
+             Map<String, Object> map = new HashMap<>();
+             map.put("count", count);
+             map.put("book", book);
+             return map;
+         }).collect(Collectors.toList());
+         BigDecimal sum = new BigDecimal(0);
+         for(Book book : books) {
+             sum = sum.add(book.getPrice().multiply(BigDecimal.valueOf(bookMap.get(book.getBookId()))));
+         }
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         String orderId = UUID.randomUUID().toString();
+         Order order = Order.builder().orderId(orderId).buyerId(user.getId()).storeId(storeId)
+                         .price(sum).status(OrderStatus.WAIT_PAYMENT)
+                         .build();
+         orderMapper.insert(order);
+         orderMapper.insertOrderBook(orderId, list);
+         for (Map<String, Object> map : list) {
+             Book book = (Book)map.get("book");
+             bookMapper.minusStockLevel(book.getBookId(), (int)map.get("count"));
+         }
+         rabbitTemplate.convertAndSend(RabbitMqConfig.EXPIRED_ORDER_EXCHANGE, RabbitMqConfig.EXPIRED_ORDER_ROUTING_KEY,
+                 orderId, message -> {
+                     message.getMessageProperties().setDelay(10000);
+                     return message;
+                 });
+     }
+ 
+     public void payment(Integer userId, String orderId, String password) {
+         User user = userMapper.selectOneById(userId);
+         if(!encoder.matches(password, user.getPassword()))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PASSWORD_ERROR);
+         Order order = orderMapper.selectById(orderId);
+         if(order == null)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.ORDER_NON_EXIST_ERROR);
+         if(!order.getStatus().equals(OrderStatus.WAIT_PAYMENT))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.ORDER_HAS_PAID_ERROR);
+         if(order.getPrice().compareTo(user.getBalance()) > 0)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.BALANCE_ERROR);
+         buyerService.updateBalanceAndOrder(storeMapper.getStoreById(order.getStoreId()).getSellerId(), order);
+     }
+ 
+     @Transactional
+     public void updateBalanceAndOrder(Integer sellerId, Order order) {
+         orderMapper.updateOrderStatus(order.getOrderId(), OrderStatus.WAIT_SEND);
+         BigDecimal price = order.getPrice();
+         userMapper.minusBalance(order.getBuyerId(), price);
+         userMapper.addBalance(sellerId, price);
+     }
+ 
+     public void addFunds(String username, String password, BigDecimal addValue) {
+         User user = userMapper.selectOneByName(username);
+         if(!encoder.matches(password, user.getPassword()))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PASSWORD_ERROR);
+         userMapper.addBalance(user.getId(), addValue);
+ 
+     }
+ 
+     public List<Order> getOrderList() {
+         User user = (User)SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         return orderMapper.select(user.getId(), OrderStatus.WAIT_PAYMENT);
+ 
+     }
+ 
+ 
+     public void takeDelivery(String orderId) {
+         Order order = orderMapper.selectById(orderId);
+         if(order == null)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.ORDER_NON_EXIST_ERROR);
+         User user = (User)SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         if(!order.getBuyerId().equals(user.getId()))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.AUTHORITY_ERROR);
+         if(!order.getStatus().equals(OrderStatus.WAIT_RECEIVE))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.STATUS_ERROR);
+         orderMapper.updateOrderStatus(orderId, OrderStatus.COMPLETED);
+ 
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-a/sources/source-3.html b/htmlReport/ns-a/sources/source-3.html new file mode 100644 index 0000000..820d7ad --- /dev/null +++ b/htmlReport/ns-a/sources/source-3.html @@ -0,0 +1,140 @@ + + + + + + + Coverage Report > OrderService + + + + + + +
+ + +

Coverage Summary for Class: OrderService (cn.edu.ecnu.stu.bookstore.service.impl)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
OrderService + + 100% + + + (1/1) + + + + 100% + + + (4/4) + + + + 87.5% + + + (7/8) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.service.impl;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.mapper.OrderMapper;
+ import cn.edu.ecnu.stu.bookstore.pojo.Order;
+ import cn.edu.ecnu.stu.bookstore.pojo.OrderStatus;
+ import cn.edu.ecnu.stu.bookstore.pojo.User;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.security.core.context.SecurityContextHolder;
+ import org.springframework.stereotype.Service;
+ import org.springframework.web.bind.annotation.RequestParam;
+ 
+ import java.util.List;
+ 
+ @Service
+ public class OrderService {
+ 
+     @Autowired
+     private OrderMapper orderMapper;
+ 
+     public List<Order> getOrderList(Integer status) {
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         return orderMapper.select(user.getId(), status == null ? null : OrderStatus.getByValue(status));
+     }
+ 
+     public void cancelOrder(String orderId) {
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         if(orderMapper.checkOrder(orderId, user.getId()) != 1)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.AUTHORITY_ERROR);
+         orderMapper.updateOrderStatus(orderId, OrderStatus.CANCEL);
+     }
+ 
+     public void add(Order order) {
+         orderMapper.insert(order);
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-a/sources/source-4.html b/htmlReport/ns-a/sources/source-4.html new file mode 100644 index 0000000..623a25f --- /dev/null +++ b/htmlReport/ns-a/sources/source-4.html @@ -0,0 +1,209 @@ + + + + + + + Coverage Report > SellerServiceImpl + + + + + + +
+ + +

Coverage Summary for Class: SellerServiceImpl (cn.edu.ecnu.stu.bookstore.service.impl)

+ + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class + Method, % + + Line, % +
SellerServiceImpl + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
SellerServiceImpl$$EnhancerBySpringCGLIB$$ba9dc329
SellerServiceImpl$$EnhancerBySpringCGLIB$$ba9dc329$$FastClassBySpringCGLIB$$20b9a27b
SellerServiceImpl$$FastClassBySpringCGLIB$$907e56df
Total + + 100% + + + (6/6) + + + + 82.9% + + + (29/35) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.service.impl;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.mapper.BookMapper;
+ import cn.edu.ecnu.stu.bookstore.mapper.OrderMapper;
+ import cn.edu.ecnu.stu.bookstore.mapper.StoreMapper;
+ import cn.edu.ecnu.stu.bookstore.pojo.*;
+ import cn.edu.ecnu.stu.bookstore.service.SellerService;
+ import cn.edu.ecnu.stu.bookstore.utils.ImageUtil;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.context.annotation.Lazy;
+ import org.springframework.security.core.context.SecurityContextHolder;
+ import org.springframework.stereotype.Service;
+ import org.springframework.transaction.annotation.Transactional;
+ 
+ import java.util.List;
+ import java.util.stream.Collectors;
+ 
+ @Service
+ public class SellerServiceImpl implements SellerService {
+ 
+     @Autowired
+     private StoreMapper storeMapper;
+ 
+     @Autowired
+     private BookMapper bookMapper;
+ 
+     @Autowired
+     private OrderMapper orderMapper;
+ 
+     @Autowired
+     @Lazy
+     private SellerService sellerService;
+ 
+     public void createStore(Store store) {
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         store.setSellerId(user.getId());
+         if(storeMapper.checkStoreExist(store.getStoreId()) != 0)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.STORE_ID_ERROR);
+         storeMapper.insert(store);
+     }
+ 
+     public void addBook(Book book) {
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         int userId = user.getId();
+         if(storeMapper.checkStore(userId, book.getStoreId()) == 0)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.STORE_NON_EXIST_ERROR);
+ 
+         List<String> tags = book.getTags();
+         List<String> pictures = book.getPictures();
+         pictures = pictures.stream().map(ImageUtil::convertBase64StrToImage).collect(Collectors.toList());
+         sellerService.insertBook(book, tags, pictures);
+     }
+ 
+     @Transactional
+     public void insertBook(Book book, List<String> tags, List<String> pictures) {
+         bookMapper.insert(book);
+         bookMapper.insertBookDetail(book);
+         bookMapper.insertTags(book.getBookId(), tags);
+         bookMapper.insertPictures(book.getBookId(), pictures);
+     }
+ 
+     @Override
+     public void addStockLevel(String storeId, String bookId, int addStockLevel) {
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         int userId = user.getId();
+         if(storeMapper.checkStore(userId, storeId) == 0)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.STORE_NON_EXIST_ERROR);
+ 
+         if(bookMapper.checkBook(storeId, bookId) == 0)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.BOOK_ERROR);
+         bookMapper.addStockLevel(storeId, bookId, addStockLevel);
+     }
+ 
+     @Override
+     public void sendGoods(String orderId) {
+         Order order = orderMapper.selectById(orderId);
+         if(order == null)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.ORDER_NON_EXIST_ERROR);
+         String storeId = order.getStoreId();
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         if(storeMapper.checkStore(user.getId(), storeId) != 1)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.AUTHORITY_ERROR);
+         if(!order.getStatus().equals(OrderStatus.WAIT_SEND))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.STATUS_ERROR);
+         orderMapper.updateOrderStatus(orderId, OrderStatus.WAIT_RECEIVE);
+     }
+ 
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-a/sources/source-5.html b/htmlReport/ns-a/sources/source-5.html new file mode 100644 index 0000000..b17a792 --- /dev/null +++ b/htmlReport/ns-a/sources/source-5.html @@ -0,0 +1,130 @@ + + + + + + + Coverage Report > UserDetailsServiceImpl + + + + + + +
+ + +

Coverage Summary for Class: UserDetailsServiceImpl (cn.edu.ecnu.stu.bookstore.service.impl)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
UserDetailsServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (2/2) + + + + 100% + + + (5/5) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.service.impl;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.pojo.LoginUser;
+ import cn.edu.ecnu.stu.bookstore.pojo.User;
+ import cn.edu.ecnu.stu.bookstore.service.UserService;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.security.core.userdetails.UserDetails;
+ import org.springframework.security.core.userdetails.UserDetailsService;
+ import org.springframework.security.core.userdetails.UsernameNotFoundException;
+ import org.springframework.stereotype.Service;
+ 
+ @Service
+ public class UserDetailsServiceImpl implements UserDetailsService {
+ 
+     @Autowired
+     private UserService userService;
+ 
+     @Override
+     public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
+         User user = userService.selectUserByName(username);
+         if(user == null)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         return new LoginUser(user);
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-a/sources/source-6.html b/htmlReport/ns-a/sources/source-6.html new file mode 100644 index 0000000..45a8818 --- /dev/null +++ b/htmlReport/ns-a/sources/source-6.html @@ -0,0 +1,193 @@ + + + + + + + Coverage Report > UserServiceImpl + + + + + + +
+ + +

Coverage Summary for Class: UserServiceImpl (cn.edu.ecnu.stu.bookstore.service.impl)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
UserServiceImpl + + 100% + + + (1/1) + + + + 100% + + + (7/7) + + + + 87.5% + + + (28/32) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.service.impl;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ import cn.edu.ecnu.stu.bookstore.mapper.UserMapper;
+ import cn.edu.ecnu.stu.bookstore.pojo.LoginUser;
+ import cn.edu.ecnu.stu.bookstore.pojo.User;
+ import cn.edu.ecnu.stu.bookstore.service.UserService;
+ import cn.edu.ecnu.stu.bookstore.utils.JwtUtil;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.data.redis.core.RedisTemplate;
+ import org.springframework.security.authentication.AuthenticationManager;
+ import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
+ import org.springframework.security.core.Authentication;
+ import org.springframework.security.core.context.SecurityContextHolder;
+ import org.springframework.security.crypto.password.PasswordEncoder;
+ import org.springframework.stereotype.Service;
+ import org.springframework.util.StringUtils;
+ 
+ import java.util.HashMap;
+ import java.util.Map;
+ import java.util.concurrent.TimeUnit;
+ 
+ @Service
+ public class UserServiceImpl implements UserService {
+ 
+     @Autowired
+     private UserMapper userMapper;
+ 
+     @Autowired
+     private AuthenticationManager authenticationManager;
+ 
+     @Autowired
+     private PasswordEncoder passwordEncoder;
+ 
+     @Autowired
+     private RedisTemplate redisTemplate;
+ 
+     public void register(User user) {
+         if(!StringUtils.hasLength(user.getUsername()))
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         if(userMapper.checkUserByUsername(user.getUsername()) != 0)
+             throw new AppException(Constants.CLIENT_ERROR, Constants.REGISTER_ERROR_MESSAGE);
+         String encoded = passwordEncoder.encode(user.getPassword());
+         user.setPassword(encoded);
+         userMapper.insert(user);
+     }
+ 
+     public void unregister(User user) {
+         User user1 = userMapper.selectOneByName(user.getUsername());
+         if(user1 == null || !passwordEncoder.matches(user.getPassword(), user1.getPassword())) {
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PASSWORD_ERROR);
+         }
+         userMapper.deleteByName(user.getUsername());
+     }
+ 
+     public User selectUserByName(String username) {
+         return userMapper.selectOneByName(username);
+     }
+ 
+     public Map<String, Object> login(User user) {
+         UsernamePasswordAuthenticationToken token = new UsernamePasswordAuthenticationToken(user.getUsername(), user.getPassword());
+         Authentication authenticate = authenticationManager.authenticate(token);
+         LoginUser loginUser = (LoginUser)authenticate.getPrincipal();
+         User user1 = loginUser.getUser();
+         redisTemplate.opsForValue().set("userId:" + user1.getId(), "1", 1, TimeUnit.DAYS);
+         Map<String, Object> map = new HashMap<>();
+         map.put("token", JwtUtil.getToken(user1));
+         map.put("user", user1);
+         return map;
+     }
+ 
+     public void logout(String username) {
+         User user = (User) SecurityContextHolder.getContext().getAuthentication().getPrincipal();
+         if(!user.getUsername().equals(username)) {
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE);
+         }
+         redisTemplate.delete("userId:" + user.getId());
+     }
+ 
+     public void changePassword(String username, String oldPassword, String newPassword) {
+         User user = userMapper.selectOneByName(username);
+         if(user == null || !passwordEncoder.matches(oldPassword, user.getPassword())){
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PASSWORD_ERROR);
+         }
+         newPassword = passwordEncoder.encode(newPassword);
+         userMapper.updatePassword(username, newPassword);
+         redisTemplate.delete("userId:" + user.getId());
+     }
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-b/index.html b/htmlReport/ns-b/index.html new file mode 100644 index 0000000..f2733be --- /dev/null +++ b/htmlReport/ns-b/index.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.utils + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.utils

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ImageUtil + + 100% + + + (1/1) + + + + 66.7% + + + (2/3) + + + + 64.9% + + + (24/37) + +
JwtUtil + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (9/9) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-b/index_SORT_BY_BLOCK.html b/htmlReport/ns-b/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..af859cf --- /dev/null +++ b/htmlReport/ns-b/index_SORT_BY_BLOCK.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.utils + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.utils

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ImageUtil + + 100% + + + (1/1) + + + + 66.7% + + + (2/3) + + + + 64.9% + + + (24/37) + +
JwtUtil + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (9/9) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-b/index_SORT_BY_BLOCK_DESC.html b/htmlReport/ns-b/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..a702880 --- /dev/null +++ b/htmlReport/ns-b/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.utils + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.utils

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
JwtUtil + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (9/9) + +
ImageUtil + + 100% + + + (1/1) + + + + 66.7% + + + (2/3) + + + + 64.9% + + + (24/37) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-b/index_SORT_BY_CLASS.html b/htmlReport/ns-b/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..9a9fdb3 --- /dev/null +++ b/htmlReport/ns-b/index_SORT_BY_CLASS.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.utils + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.utils

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ImageUtil + + 100% + + + (1/1) + + + + 66.7% + + + (2/3) + + + + 64.9% + + + (24/37) + +
JwtUtil + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (9/9) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-b/index_SORT_BY_CLASS_DESC.html b/htmlReport/ns-b/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..1a25378 --- /dev/null +++ b/htmlReport/ns-b/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.utils + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.utils

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
JwtUtil + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (9/9) + +
ImageUtil + + 100% + + + (1/1) + + + + 66.7% + + + (2/3) + + + + 64.9% + + + (24/37) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-b/index_SORT_BY_LINE.html b/htmlReport/ns-b/index_SORT_BY_LINE.html new file mode 100644 index 0000000..f21af24 --- /dev/null +++ b/htmlReport/ns-b/index_SORT_BY_LINE.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.utils + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.utils

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ImageUtil + + 100% + + + (1/1) + + + + 66.7% + + + (2/3) + + + + 64.9% + + + (24/37) + +
JwtUtil + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (9/9) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-b/index_SORT_BY_LINE_DESC.html b/htmlReport/ns-b/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..3341f2d --- /dev/null +++ b/htmlReport/ns-b/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.utils + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.utils

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
JwtUtil + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (9/9) + +
ImageUtil + + 100% + + + (1/1) + + + + 66.7% + + + (2/3) + + + + 64.9% + + + (24/37) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-b/index_SORT_BY_METHOD.html b/htmlReport/ns-b/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..b60bad1 --- /dev/null +++ b/htmlReport/ns-b/index_SORT_BY_METHOD.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.utils + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.utils

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
ImageUtil + + 100% + + + (1/1) + + + + 66.7% + + + (2/3) + + + + 64.9% + + + (24/37) + +
JwtUtil + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (9/9) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-b/index_SORT_BY_METHOD_DESC.html b/htmlReport/ns-b/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..6047f57 --- /dev/null +++ b/htmlReport/ns-b/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.utils + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.utils

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
JwtUtil + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (9/9) + +
ImageUtil + + 100% + + + (1/1) + + + + 66.7% + + + (2/3) + + + + 64.9% + + + (24/37) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-b/index_SORT_BY_NAME_DESC.html b/htmlReport/ns-b/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..3956823 --- /dev/null +++ b/htmlReport/ns-b/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,169 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.utils + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.utils

+ + + + + + + + + + + + + +
Package + Class, % + + Method, % + + Line, % +
cn.edu.ecnu.stu.bookstore.utils + + 100% + + + (2/2) + + + + 83.3% + + + (5/6) + + + + 71.7% + + + (33/46) + +
+ +
+
+ + + + + + + + + + + + + + + + + + + + +
+Class + Class, % + + Method, % + + Line, % +
JwtUtil + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (9/9) + +
ImageUtil + + 100% + + + (1/1) + + + + 66.7% + + + (2/3) + + + + 64.9% + + + (24/37) + +
+ +
+ + + + + + diff --git a/htmlReport/ns-b/sources/source-1.html b/htmlReport/ns-b/sources/source-1.html new file mode 100644 index 0000000..009bcd6 --- /dev/null +++ b/htmlReport/ns-b/sources/source-1.html @@ -0,0 +1,192 @@ + + + + + + + Coverage Report > ImageUtil + + + + + + +
+ + +

Coverage Summary for Class: ImageUtil (cn.edu.ecnu.stu.bookstore.utils)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
ImageUtil + + 100% + + + (1/1) + + + + 66.7% + + + (2/3) + + + + 64.9% + + + (24/37) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.utils;
+ 
+ import cn.edu.ecnu.stu.bookstore.component.AppException;
+ import cn.edu.ecnu.stu.bookstore.component.Constants;
+ 
+ import java.awt.image.BufferedImage;
+ import java.io.ByteArrayInputStream;
+ import java.io.ByteArrayOutputStream;
+ import java.io.File;
+ import java.io.IOException;
+ import java.util.Base64;
+ import java.util.UUID;
+ 
+ import javax.imageio.ImageIO;
+ 
+ public class ImageUtil {
+ 
+     /**
+      * ͼƬתBase64ַ
+      * @param imageFileName
+      * @return
+      */
+     public static String convertImageToBase64Str(String imageFileName) {
+         ByteArrayOutputStream baos = null;
+         try {
+             //ȡͼƬ
+             String suffix = imageFileName.substring(imageFileName.lastIndexOf(".") + 1);
+             //ļ
+             File imageFile = new File("pictures/" + imageFileName);
+             //ͨImageIOļȡBufferedImage
+             BufferedImage bufferedImage = ImageIO.read(imageFile);
+             //ֽ
+             baos = new ByteArrayOutputStream();
+             //д
+             ImageIO.write(bufferedImage, suffix, baos);
+             //ֽͨȡֽ
+             byte[] bytes = baos.toByteArray();
+             //ȡJDK8ıBase64.EncoderתΪbase64ַ
+             return Base64.getEncoder().encodeToString(bytes);
+         } catch (Exception e) {
+             e.printStackTrace();
+         } finally {
+             try {
+                 if (baos != null) {
+                     baos.close();
+                 }
+             } catch (IOException e) {
+                 e.printStackTrace();
+             }
+         }
+         return null;
+     }
+ 
+     /**
+      * Base64ַתͼƬ
+      * @param base64String
+      */
+     public static String convertBase64StrToImage(String base64String) {
+         ByteArrayInputStream bais = null;
+         try {
+             //ȡͼƬ
+             String suffix = "png";
+             //ȡJDK8ĽBase64.Decoder,base64ַתΪֽ
+             byte[] bytes = Base64.getDecoder().decode(base64String);
+             //ֽ
+             bais = new ByteArrayInputStream(bytes);
+             //ͨImageIOֽתΪBufferedImage
+             BufferedImage bufferedImage = ImageIO.read(bais);
+             String fileName = UUID.randomUUID() + "." + suffix;
+             String fullPath = "pictures/" + fileName;
+             //ļ
+             File imageFile = new File(fullPath);
+             //дļ
+             ImageIO.write(bufferedImage, suffix, imageFile);
+             return fileName;
+         } catch (Exception e) {
+             throw new AppException(Constants.CLIENT_ERROR, Constants.PICTURE_ERROR);
+         } finally {
+             try {
+                 if (bais != null) {
+                     bais.close();
+                 }
+             } catch (IOException e) {
+                 e.printStackTrace();
+             }
+         }
+     }
+ }
+ 
+
+
+
+ + + + + + diff --git a/htmlReport/ns-b/sources/source-2.html b/htmlReport/ns-b/sources/source-2.html new file mode 100644 index 0000000..82510b6 --- /dev/null +++ b/htmlReport/ns-b/sources/source-2.html @@ -0,0 +1,148 @@ + + + + + + + Coverage Report > JwtUtil + + + + + + +
+ + +

Coverage Summary for Class: JwtUtil (cn.edu.ecnu.stu.bookstore.utils)

+ + + + + + + + + + + + + + + +
Class + Class, % + + Method, % + + Line, % +
JwtUtil + + 100% + + + (1/1) + + + + 100% + + + (3/3) + + + + 100% + + + (9/9) + +
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.utils;
+ 
+ import com.alibaba.fastjson.JSON;
+ import com.auth0.jwt.JWT;
+ import com.auth0.jwt.JWTCreator;
+ import com.auth0.jwt.algorithms.Algorithm;
+ import com.auth0.jwt.interfaces.DecodedJWT;
+ import org.springframework.beans.factory.annotation.Autowired;
+ import org.springframework.data.redis.core.RedisTemplate;
+ import org.springframework.stereotype.Component;
+ 
+ import java.util.Calendar;
+ import java.util.Date;
+ import java.util.Map;
+ 
+ @Component
+ public class JwtUtil {
+ 
+     /** ֵ*/
+     private static final String SING="!@#%^$*$%#^$#%^%$$#QWBADasda881";
+ 
+     //
+     public static String getToken(Object object){
+         //ȡ
+         Calendar calendar= Calendar.getInstance();
+         //Ĭ1
+         calendar.add(Calendar.DATE,1);
+         //½һJWTBuilder
+         JWTCreator.Builder builder = JWT.create();
+         String jsonStr = JSON.toJSONString(object);
+         builder.withClaim("data",jsonStr);
+         //ùʱǩ
+         return builder.withExpiresAt(calendar.getTime()).sign(Algorithm.HMAC256(SING));
+     }
+     /**
+      * ǩDecodedJWT
+      * @param token  
+      */
+     public static Object getTokenInfo(String token,Class<?> clazz){
+         DecodedJWT jwt = JWT.require(Algorithm.HMAC256(SING)).build().verify(token);
+         return JSON.parseObject(jwt.getClaim("data").asString(), clazz);
+     }
+ 
+ }
+ 
+
+
+
+ + + + + + diff --git a/htmlReport/ns-c/index.html b/htmlReport/ns-c/index.html new file mode 100644 index 0000000..487a01d --- /dev/null +++ b/htmlReport/ns-c/index.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.mapper + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.mapper

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.mapper
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-c/index_SORT_BY_BLOCK.html b/htmlReport/ns-c/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..b6a85f1 --- /dev/null +++ b/htmlReport/ns-c/index_SORT_BY_BLOCK.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.mapper + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.mapper

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.mapper
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-c/index_SORT_BY_BLOCK_DESC.html b/htmlReport/ns-c/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..bc5c58e --- /dev/null +++ b/htmlReport/ns-c/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.mapper + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.mapper

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.mapper
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-c/index_SORT_BY_CLASS.html b/htmlReport/ns-c/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..43475b6 --- /dev/null +++ b/htmlReport/ns-c/index_SORT_BY_CLASS.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.mapper + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.mapper

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.mapper
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-c/index_SORT_BY_CLASS_DESC.html b/htmlReport/ns-c/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..a6f949b --- /dev/null +++ b/htmlReport/ns-c/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.mapper + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.mapper

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.mapper
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-c/index_SORT_BY_LINE.html b/htmlReport/ns-c/index_SORT_BY_LINE.html new file mode 100644 index 0000000..cbad0b3 --- /dev/null +++ b/htmlReport/ns-c/index_SORT_BY_LINE.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.mapper + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.mapper

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.mapper
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-c/index_SORT_BY_LINE_DESC.html b/htmlReport/ns-c/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..9cb9a1e --- /dev/null +++ b/htmlReport/ns-c/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.mapper + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.mapper

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.mapper
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-c/index_SORT_BY_METHOD.html b/htmlReport/ns-c/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..8f55ab6 --- /dev/null +++ b/htmlReport/ns-c/index_SORT_BY_METHOD.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.mapper + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.mapper

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.mapper
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-c/index_SORT_BY_METHOD_DESC.html b/htmlReport/ns-c/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..6972ed4 --- /dev/null +++ b/htmlReport/ns-c/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.mapper + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.mapper

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.mapper
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-c/index_SORT_BY_NAME_DESC.html b/htmlReport/ns-c/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..e9e4890 --- /dev/null +++ b/htmlReport/ns-c/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.mapper + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.mapper

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.mapper
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-c/sources/source-1.html b/htmlReport/ns-c/sources/source-1.html new file mode 100644 index 0000000..1cdab4b --- /dev/null +++ b/htmlReport/ns-c/sources/source-1.html @@ -0,0 +1,103 @@ + + + + + + + Coverage Report > UserMapper + + + + + + +
+ + +

Coverage Summary for Class: UserMapper (cn.edu.ecnu.stu.bookstore.mapper)

+ + + + + + + + + +
Class
UserMapper
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.mapper;
+ 
+ import cn.edu.ecnu.stu.bookstore.pojo.User;
+ import org.apache.ibatis.annotations.Mapper;
+ import org.apache.ibatis.annotations.Param;
+ import org.apache.ibatis.annotations.Select;
+ import org.apache.ibatis.annotations.Update;
+ 
+ import java.math.BigDecimal;
+ 
+ @Mapper
+ public interface UserMapper {
+ 
+     int insert(@Param("user") User user);
+ 
+     int delete(@Param("userId") int userId);
+ 
+     int checkUserByUsername(@Param("username") String username);
+ 
+     int deleteByName(@Param("username") String username);
+ 
+     @Select("select id, username, password, address, phone, balance from t_user where id = #{id}")
+     User selectOneById(@Param("id") Integer id);
+ 
+     @Select("select id, username, password, address, phone, balance from t_user where username = #{username}")
+     User selectOneByName(@Param("username") String username);
+ 
+     @Update("update t_user set password = #{password} where username = #{username}")
+     int updatePassword(@Param("username") String username, @Param("password") String password);
+ 
+     @Update("update t_user set balance = balance - #{price} where id = #{userId}")
+     int minusBalance(@Param("userId") int userId, @Param("price") BigDecimal price);
+ 
+     @Update("update t_user set balance = balance + #{addValue} where id = #{userId}")
+     void addBalance(@Param("userId") Integer userId,@Param("addValue") BigDecimal addValue);
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-c/sources/source-2.html b/htmlReport/ns-c/sources/source-2.html new file mode 100644 index 0000000..1b15269 --- /dev/null +++ b/htmlReport/ns-c/sources/source-2.html @@ -0,0 +1,103 @@ + + + + + + + Coverage Report > OrderMapper + + + + + + +
+ + +

Coverage Summary for Class: OrderMapper (cn.edu.ecnu.stu.bookstore.mapper)

+ + + + + + + + + +
Class
OrderMapper
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.mapper;
+ 
+ import cn.edu.ecnu.stu.bookstore.pojo.Book;
+ import cn.edu.ecnu.stu.bookstore.pojo.Order;
+ import cn.edu.ecnu.stu.bookstore.pojo.OrderStatus;
+ import org.apache.ibatis.annotations.*;
+ 
+ import java.math.BigDecimal;
+ import java.util.List;
+ import java.util.Map;
+ 
+ @Mapper
+ public interface OrderMapper {
+ 
+     @Insert("insert into t_order(order_id, buyer_id, from_address, to_address, price, status, store_id) values " +
+             "(#{order.orderId}, #{order.buyerId}, #{order.fromAddress}, #{order.toAddress}, #{order.price}, #{order.status.value}, " +
+             "#{order.storeId})")
+     int insert(@Param("order")Order order);
+ 
+     int insertOrderBook(@Param("orderId") String orderId, @Param("books") List<Map<String, Object>> books);
+ 
+     @Select("select price from t_order where order_id = #{orderId}")
+     BigDecimal selectPrice(@Param("orderId") String orderId);
+ 
+     @Update("update t_order set status = #{status.value} where order_id = #{orderId}")
+     void updateOrderStatus(@Param("orderId") String orderId, @Param("status") OrderStatus status);
+ 
+     List<Order> select(@Param("buyerId") Integer buyerId, @Param("status") OrderStatus status);
+ 
+     Order selectById(@Param("orderId") String orderId);
+ 
+     @Select("select count(*) from t_order where buyer_id = #{buyerId} and order_id = #{orderId}")
+     int checkOrder(@Param("orderId") String orderId, @Param("buyerId") Integer buyerId);
+ 
+     int selectStatus(@Param("orderId") String orderId);
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-c/sources/source-3.html b/htmlReport/ns-c/sources/source-3.html new file mode 100644 index 0000000..dfe5e1c --- /dev/null +++ b/htmlReport/ns-c/sources/source-3.html @@ -0,0 +1,117 @@ + + + + + + + Coverage Report > BookMapper + + + + + + +
+ + +

Coverage Summary for Class: BookMapper (cn.edu.ecnu.stu.bookstore.mapper)

+ + + + + + + + + +
Class
BookMapper
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.mapper;
+ 
+ import cn.edu.ecnu.stu.bookstore.pojo.Book;
+ import cn.edu.ecnu.stu.bookstore.pojo.vo.NewOrderVO;
+ import org.apache.ibatis.annotations.*;
+ 
+ import java.util.List;
+ import java.util.Map;
+ import java.util.Set;
+ 
+ @Mapper
+ public interface BookMapper {
+ 
+     int insert(@Param("book") Book book);
+ 
+     List<String> selectTags(@Param("book_id") String bookId);
+ 
+     int insertTags(@Param("book_id") String bookId, @Param("tags") List<String> tags);
+ 
+     List<String> selectPictures(@Param("book_id") String bookId);
+ 
+     int insertPictures(@Param("book_id") String bookId, @Param("pictures") List<String> pictures);
+ 
+     @Insert("insert into t_book_detail(book_id, author_intro, book_intro, content) values " +
+             "(#{book.bookId}, #{book.authorIntro}, #{book.bookIntro}, #{book.content})")
+     int insertBookDetail(@Param("book") Book book);
+ 
+     @Select("select count(*) from t_book where store_id = #{storeId} and book_id = #{bookId}")
+     int checkBook(@Param("storeId") String storeId, @Param("bookId") String bookId);
+ 
+     @Update("update t_book set stock_level = stock_level + #{addStockLevel} where store_id = #{storeId} and book_id = #{bookId}")
+     void addStockLevel(@Param("storeId") String storeId, @Param("bookId") String bookId, @Param("addStockLevel") int addStockLevel);
+ 
+     List<Book> batchSelect(@Param("storeId") String storeId, @Param("books") Set<String> books);
+ 
+     @Update("update t_book set stock_level = stock_level - #{count} where book_id = #{bookId}")
+     int minusStockLevel(@Param("bookId") String bookId, @Param("count") int count);
+ 
+     List<Book> getBookByTitle(@Param("title") String title, @Param("storeId") String storeId, @Param("start") Integer start, @Param("size") Integer size);
+ 
+     List<Book> getBookByAuthor(@Param("author") String author, @Param("storeId") String storeId, @Param("start") Integer start, @Param("size") Integer size);
+ 
+     List<Book> getBookByTag(@Param("tag") String tag, @Param("storeId") String storeId, @Param("start") Integer start, @Param("size") Integer size);
+ 
+     List<Book> getBookByContent(@Param("content") String content, @Param("storeId") String storeId, @Param("start") Integer start, @Param("size") Integer size);
+ 
+ 
+ 
+ 
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-c/sources/source-4.html b/htmlReport/ns-c/sources/source-4.html new file mode 100644 index 0000000..1bd05c1 --- /dev/null +++ b/htmlReport/ns-c/sources/source-4.html @@ -0,0 +1,91 @@ + + + + + + + Coverage Report > StoreMapper + + + + + + +
+ + +

Coverage Summary for Class: StoreMapper (cn.edu.ecnu.stu.bookstore.mapper)

+ + + + + + + + + +
Class
StoreMapper
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.mapper;
+ 
+ import cn.edu.ecnu.stu.bookstore.pojo.Store;
+ import org.apache.ibatis.annotations.Insert;
+ import org.apache.ibatis.annotations.Mapper;
+ import org.apache.ibatis.annotations.Param;
+ import org.apache.ibatis.annotations.Select;
+ 
+ @Mapper
+ public interface StoreMapper {
+ 
+     @Select("select count(*) from t_store where store_id = #{store_id}")
+     int checkStoreExist(@Param("store_id") String storeId);
+ 
+     @Select("select count(*) from t_store where store_id = #{store_id} and store_id = #{store_id}")
+     int checkStore(@Param("seller_id") Integer sellerId, @Param("store_id") String storeId);
+ 
+     @Insert("insert into t_store(store_id, seller_id) values(#{store.storeId}, #{store.sellerId})")
+     int insert(@Param("store") Store store);
+ 
+     @Select("select store_id, seller_id, create_time from t_store where store_id = #{storeId}")
+     Store getStoreById(@Param("storeId") String storeId);
+ 
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-d/index.html b/htmlReport/ns-d/index.html new file mode 100644 index 0000000..0b2e08a --- /dev/null +++ b/htmlReport/ns-d/index.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.service
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-d/index_SORT_BY_BLOCK.html b/htmlReport/ns-d/index_SORT_BY_BLOCK.html new file mode 100644 index 0000000..cd66e0c --- /dev/null +++ b/htmlReport/ns-d/index_SORT_BY_BLOCK.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.service
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-d/index_SORT_BY_BLOCK_DESC.html b/htmlReport/ns-d/index_SORT_BY_BLOCK_DESC.html new file mode 100644 index 0000000..7b4ba8f --- /dev/null +++ b/htmlReport/ns-d/index_SORT_BY_BLOCK_DESC.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.service
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-d/index_SORT_BY_CLASS.html b/htmlReport/ns-d/index_SORT_BY_CLASS.html new file mode 100644 index 0000000..993e79f --- /dev/null +++ b/htmlReport/ns-d/index_SORT_BY_CLASS.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.service
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-d/index_SORT_BY_CLASS_DESC.html b/htmlReport/ns-d/index_SORT_BY_CLASS_DESC.html new file mode 100644 index 0000000..ee4fb40 --- /dev/null +++ b/htmlReport/ns-d/index_SORT_BY_CLASS_DESC.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.service
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-d/index_SORT_BY_LINE.html b/htmlReport/ns-d/index_SORT_BY_LINE.html new file mode 100644 index 0000000..23ee2ac --- /dev/null +++ b/htmlReport/ns-d/index_SORT_BY_LINE.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.service
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-d/index_SORT_BY_LINE_DESC.html b/htmlReport/ns-d/index_SORT_BY_LINE_DESC.html new file mode 100644 index 0000000..c4ffc0b --- /dev/null +++ b/htmlReport/ns-d/index_SORT_BY_LINE_DESC.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.service
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-d/index_SORT_BY_METHOD.html b/htmlReport/ns-d/index_SORT_BY_METHOD.html new file mode 100644 index 0000000..5de646d --- /dev/null +++ b/htmlReport/ns-d/index_SORT_BY_METHOD.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.service
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-d/index_SORT_BY_METHOD_DESC.html b/htmlReport/ns-d/index_SORT_BY_METHOD_DESC.html new file mode 100644 index 0000000..5c7d394 --- /dev/null +++ b/htmlReport/ns-d/index_SORT_BY_METHOD_DESC.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.service
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-d/index_SORT_BY_NAME_DESC.html b/htmlReport/ns-d/index_SORT_BY_NAME_DESC.html new file mode 100644 index 0000000..50c98d7 --- /dev/null +++ b/htmlReport/ns-d/index_SORT_BY_NAME_DESC.html @@ -0,0 +1,67 @@ + + + + + Coverage Report > cn.edu.ecnu.stu.bookstore.service + + + + + + +
+ + + +

Coverage Summary for Package: cn.edu.ecnu.stu.bookstore.service

+ + + + + + + +
Package
cn.edu.ecnu.stu.bookstore.service
+ +
+
+ + + + + +
+Class
+ +
+ + + + + + diff --git a/htmlReport/ns-d/sources/source-1.html b/htmlReport/ns-d/sources/source-1.html new file mode 100644 index 0000000..8007290 --- /dev/null +++ b/htmlReport/ns-d/sources/source-1.html @@ -0,0 +1,86 @@ + + + + + + + Coverage Report > SellerService + + + + + + +
+ + +

Coverage Summary for Class: SellerService (cn.edu.ecnu.stu.bookstore.service)

+ + + + + + + + + +
Class
SellerService
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.service;
+ 
+ import cn.edu.ecnu.stu.bookstore.pojo.Book;
+ import cn.edu.ecnu.stu.bookstore.pojo.Store;
+ 
+ import java.util.List;
+ 
+ public interface SellerService {
+ 
+     void createStore(Store store);
+ 
+     void addBook(Book book);
+ 
+     void insertBook(Book book, List<String> tags, List<String> pictures);
+ 
+     void addStockLevel(String storeId, String bookId, int addStockLevel);
+ 
+     void sendGoods(String orderId);
+ }
+
+
+
+ + + + + + diff --git a/htmlReport/ns-d/sources/source-2.html b/htmlReport/ns-d/sources/source-2.html new file mode 100644 index 0000000..5999285 --- /dev/null +++ b/htmlReport/ns-d/sources/source-2.html @@ -0,0 +1,86 @@ + + + + + + + Coverage Report > UserService + + + + + + +
+ + +

Coverage Summary for Class: UserService (cn.edu.ecnu.stu.bookstore.service)

+ + + + + + + + + +
Class
UserService
+ +
+
+ + +
+ package cn.edu.ecnu.stu.bookstore.service;
+ 
+ import cn.edu.ecnu.stu.bookstore.pojo.User;
+ 
+ import java.util.Map;
+ 
+ public interface UserService {
+ 
+     void register(User user);
+     void unregister(User user);
+     User selectUserByName(String username);
+     Map<String, Object> login(User user);
+ 
+     void logout(String username);
+ 
+     void changePassword(String username, String oldPassword, String newPassword);
+ 
+ 
+ }
+
+
+
+ + + + + + diff --git a/pictures/01e713c3-2fae-4a4b-91b3-c544fad2c3f8.png b/pictures/01e713c3-2fae-4a4b-91b3-c544fad2c3f8.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/01e713c3-2fae-4a4b-91b3-c544fad2c3f8.png differ diff --git a/pictures/03187ed6-87c3-437d-a2f7-7d71687cdd45.png b/pictures/03187ed6-87c3-437d-a2f7-7d71687cdd45.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/03187ed6-87c3-437d-a2f7-7d71687cdd45.png differ diff --git a/pictures/04d1d992-d5fe-4ac3-bc77-d6106cda6702.png b/pictures/04d1d992-d5fe-4ac3-bc77-d6106cda6702.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/04d1d992-d5fe-4ac3-bc77-d6106cda6702.png differ diff --git a/pictures/064ed81b-a0c2-4d44-a37c-a749a8a8863b.png b/pictures/064ed81b-a0c2-4d44-a37c-a749a8a8863b.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/064ed81b-a0c2-4d44-a37c-a749a8a8863b.png differ diff --git a/pictures/07d5b97c-02da-4011-9cb3-f1eabebf8d94.png b/pictures/07d5b97c-02da-4011-9cb3-f1eabebf8d94.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/07d5b97c-02da-4011-9cb3-f1eabebf8d94.png differ diff --git a/pictures/07ef4686-027f-4216-9599-708c89216e6f.png b/pictures/07ef4686-027f-4216-9599-708c89216e6f.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/07ef4686-027f-4216-9599-708c89216e6f.png differ diff --git a/pictures/0ab2007b-33da-41a6-83cf-f5a3a10ad65d.png b/pictures/0ab2007b-33da-41a6-83cf-f5a3a10ad65d.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/0ab2007b-33da-41a6-83cf-f5a3a10ad65d.png differ diff --git a/pictures/0b59e437-9354-4073-9162-083536b70dde.png b/pictures/0b59e437-9354-4073-9162-083536b70dde.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/0b59e437-9354-4073-9162-083536b70dde.png differ diff --git a/pictures/0dc6addc-be04-4cbd-bcb5-e825a573ed02.png b/pictures/0dc6addc-be04-4cbd-bcb5-e825a573ed02.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/0dc6addc-be04-4cbd-bcb5-e825a573ed02.png differ diff --git a/pictures/0e8bd96b-763a-4577-9968-a55ed81cb09b.png b/pictures/0e8bd96b-763a-4577-9968-a55ed81cb09b.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/0e8bd96b-763a-4577-9968-a55ed81cb09b.png differ diff --git a/pictures/10125c7c-52e9-4fb4-8e12-71e5137f7fd7.png b/pictures/10125c7c-52e9-4fb4-8e12-71e5137f7fd7.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/10125c7c-52e9-4fb4-8e12-71e5137f7fd7.png differ diff --git a/pictures/135ddf12-85d1-4391-9827-a5ca9eb88dcc.png b/pictures/135ddf12-85d1-4391-9827-a5ca9eb88dcc.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/135ddf12-85d1-4391-9827-a5ca9eb88dcc.png differ diff --git a/pictures/14ebdc24-64e4-40b1-a23f-fd2d576d7b7a.png b/pictures/14ebdc24-64e4-40b1-a23f-fd2d576d7b7a.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/14ebdc24-64e4-40b1-a23f-fd2d576d7b7a.png differ diff --git a/pictures/17592b56-8e54-4248-b971-4163fe5baaae.png b/pictures/17592b56-8e54-4248-b971-4163fe5baaae.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/17592b56-8e54-4248-b971-4163fe5baaae.png differ diff --git a/pictures/1858e4d4-f935-4be9-b94e-5fd04b067ba2.png b/pictures/1858e4d4-f935-4be9-b94e-5fd04b067ba2.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/1858e4d4-f935-4be9-b94e-5fd04b067ba2.png differ diff --git a/pictures/1a473f07-1e2c-4aaf-96d0-74c444beb3fe.png b/pictures/1a473f07-1e2c-4aaf-96d0-74c444beb3fe.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/1a473f07-1e2c-4aaf-96d0-74c444beb3fe.png differ diff --git a/pictures/1a5934cb-fb70-4485-91ce-b82d0b6ae4df.png b/pictures/1a5934cb-fb70-4485-91ce-b82d0b6ae4df.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/1a5934cb-fb70-4485-91ce-b82d0b6ae4df.png differ diff --git a/pictures/1b9f76bf-acef-4156-a260-fd23b9c0317c.png b/pictures/1b9f76bf-acef-4156-a260-fd23b9c0317c.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/1b9f76bf-acef-4156-a260-fd23b9c0317c.png differ diff --git a/pictures/1d94695c-1a57-4271-8b54-b111af76c890.png b/pictures/1d94695c-1a57-4271-8b54-b111af76c890.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/1d94695c-1a57-4271-8b54-b111af76c890.png differ diff --git a/pictures/1e81a66d-84e0-45f0-a521-da7066e361ae.png b/pictures/1e81a66d-84e0-45f0-a521-da7066e361ae.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/1e81a66d-84e0-45f0-a521-da7066e361ae.png differ diff --git a/pictures/1f0aae78-a078-4274-acef-3e42614886d9.png b/pictures/1f0aae78-a078-4274-acef-3e42614886d9.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/1f0aae78-a078-4274-acef-3e42614886d9.png differ diff --git a/pictures/2591d0ab-6a0e-4eed-b428-b3a83f9d630f.png b/pictures/2591d0ab-6a0e-4eed-b428-b3a83f9d630f.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/2591d0ab-6a0e-4eed-b428-b3a83f9d630f.png differ diff --git a/pictures/26b16131-1c8c-4933-8411-268bb818723a.png b/pictures/26b16131-1c8c-4933-8411-268bb818723a.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/26b16131-1c8c-4933-8411-268bb818723a.png differ diff --git a/pictures/2d05bf8f-9a69-4a0c-ae5f-bf0ff8f16450.png b/pictures/2d05bf8f-9a69-4a0c-ae5f-bf0ff8f16450.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/2d05bf8f-9a69-4a0c-ae5f-bf0ff8f16450.png differ diff --git a/pictures/310b31b9-7c2b-46c5-a64b-9e0ea5ac58ae.png b/pictures/310b31b9-7c2b-46c5-a64b-9e0ea5ac58ae.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/310b31b9-7c2b-46c5-a64b-9e0ea5ac58ae.png differ diff --git a/pictures/34ed8b63-b092-4ccf-82d8-c4b853511c9a.png b/pictures/34ed8b63-b092-4ccf-82d8-c4b853511c9a.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/34ed8b63-b092-4ccf-82d8-c4b853511c9a.png differ diff --git a/pictures/35ccd521-ff96-4add-a0fe-cfa32404681d.png b/pictures/35ccd521-ff96-4add-a0fe-cfa32404681d.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/35ccd521-ff96-4add-a0fe-cfa32404681d.png differ diff --git a/pictures/41a457c5-7c29-4a6c-be7c-80929bf04ba3.png b/pictures/41a457c5-7c29-4a6c-be7c-80929bf04ba3.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/41a457c5-7c29-4a6c-be7c-80929bf04ba3.png differ diff --git a/pictures/441260b2-6844-42d1-b515-af1431c8634b.png b/pictures/441260b2-6844-42d1-b515-af1431c8634b.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/441260b2-6844-42d1-b515-af1431c8634b.png differ diff --git a/pictures/478fa43f-78af-4e01-b213-ee308e4831c5.png b/pictures/478fa43f-78af-4e01-b213-ee308e4831c5.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/478fa43f-78af-4e01-b213-ee308e4831c5.png differ diff --git a/pictures/4b2d1eb4-3dd6-4f09-a91c-229b6fedb700.png b/pictures/4b2d1eb4-3dd6-4f09-a91c-229b6fedb700.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/4b2d1eb4-3dd6-4f09-a91c-229b6fedb700.png differ diff --git a/pictures/54659bf9-fe28-4765-b3ca-0ec357ff12e5.png b/pictures/54659bf9-fe28-4765-b3ca-0ec357ff12e5.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/54659bf9-fe28-4765-b3ca-0ec357ff12e5.png differ diff --git a/pictures/56408885-50e6-4e68-bc83-df361f2f0f32.png b/pictures/56408885-50e6-4e68-bc83-df361f2f0f32.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/56408885-50e6-4e68-bc83-df361f2f0f32.png differ diff --git a/pictures/57c0ace4-5516-4b93-a192-fdabfd868c4e.png b/pictures/57c0ace4-5516-4b93-a192-fdabfd868c4e.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/57c0ace4-5516-4b93-a192-fdabfd868c4e.png differ diff --git a/pictures/58cc2333-a9df-446e-9ac3-bbc5578b622f.png b/pictures/58cc2333-a9df-446e-9ac3-bbc5578b622f.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/58cc2333-a9df-446e-9ac3-bbc5578b622f.png differ diff --git a/pictures/5aaebc4a-8da4-4c9b-b429-e380f4163c83.png b/pictures/5aaebc4a-8da4-4c9b-b429-e380f4163c83.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/5aaebc4a-8da4-4c9b-b429-e380f4163c83.png differ diff --git a/pictures/5cbca3b3-bc9d-4505-8cc2-1333355fe1dd.png b/pictures/5cbca3b3-bc9d-4505-8cc2-1333355fe1dd.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/5cbca3b3-bc9d-4505-8cc2-1333355fe1dd.png differ diff --git a/pictures/5e624caf-3d9f-4cad-b278-ac21c56e5638.png b/pictures/5e624caf-3d9f-4cad-b278-ac21c56e5638.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/5e624caf-3d9f-4cad-b278-ac21c56e5638.png differ diff --git a/pictures/603c8db7-5815-43f9-a013-9ae1e755b12b.png b/pictures/603c8db7-5815-43f9-a013-9ae1e755b12b.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/603c8db7-5815-43f9-a013-9ae1e755b12b.png differ diff --git a/pictures/6302564a-b01d-41d8-b79f-0a85eb3f5e22.png b/pictures/6302564a-b01d-41d8-b79f-0a85eb3f5e22.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/6302564a-b01d-41d8-b79f-0a85eb3f5e22.png differ diff --git a/pictures/660e5a96-26ea-4c5f-b6bb-62d17c3ecfe9.png b/pictures/660e5a96-26ea-4c5f-b6bb-62d17c3ecfe9.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/660e5a96-26ea-4c5f-b6bb-62d17c3ecfe9.png differ diff --git a/pictures/6774b66c-49d2-4947-bbd2-f2260b234904.png b/pictures/6774b66c-49d2-4947-bbd2-f2260b234904.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/6774b66c-49d2-4947-bbd2-f2260b234904.png differ diff --git a/pictures/6d4e3fcd-3bb6-4301-b9b4-bb58722e4020.png b/pictures/6d4e3fcd-3bb6-4301-b9b4-bb58722e4020.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/6d4e3fcd-3bb6-4301-b9b4-bb58722e4020.png differ diff --git a/pictures/6f6a4747-aad3-43ce-9727-0831c2e798bd.png b/pictures/6f6a4747-aad3-43ce-9727-0831c2e798bd.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/6f6a4747-aad3-43ce-9727-0831c2e798bd.png differ diff --git a/pictures/73b52658-4575-4671-ad38-57f4ad0a01fb.png b/pictures/73b52658-4575-4671-ad38-57f4ad0a01fb.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/73b52658-4575-4671-ad38-57f4ad0a01fb.png differ diff --git a/pictures/73e3a520-7287-493f-9d32-d9b0859dc7f7.png b/pictures/73e3a520-7287-493f-9d32-d9b0859dc7f7.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/73e3a520-7287-493f-9d32-d9b0859dc7f7.png differ diff --git a/pictures/743cc11b-20bc-449a-a9ed-a7981dffee58.png b/pictures/743cc11b-20bc-449a-a9ed-a7981dffee58.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/743cc11b-20bc-449a-a9ed-a7981dffee58.png differ diff --git a/pictures/7451564f-4839-44ff-bb71-100870930d41.png b/pictures/7451564f-4839-44ff-bb71-100870930d41.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/7451564f-4839-44ff-bb71-100870930d41.png differ diff --git a/pictures/7590e028-4ae5-487f-8171-97c34aec56c5.png b/pictures/7590e028-4ae5-487f-8171-97c34aec56c5.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/7590e028-4ae5-487f-8171-97c34aec56c5.png differ diff --git a/pictures/75a0902c-ba93-4700-a848-70d66342dcf7.png b/pictures/75a0902c-ba93-4700-a848-70d66342dcf7.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/75a0902c-ba93-4700-a848-70d66342dcf7.png differ diff --git a/pictures/76341527-0d2c-41b0-967a-6c9ea825e73f.png b/pictures/76341527-0d2c-41b0-967a-6c9ea825e73f.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/76341527-0d2c-41b0-967a-6c9ea825e73f.png differ diff --git a/pictures/76dea653-fe03-4972-8229-e4cebbf05c3c.png b/pictures/76dea653-fe03-4972-8229-e4cebbf05c3c.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/76dea653-fe03-4972-8229-e4cebbf05c3c.png differ diff --git a/pictures/77404b7c-1018-4200-a409-338a99608f2a.png b/pictures/77404b7c-1018-4200-a409-338a99608f2a.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/77404b7c-1018-4200-a409-338a99608f2a.png differ diff --git a/pictures/7ab7450f-65ae-41d9-8193-0e4894b9d404.png b/pictures/7ab7450f-65ae-41d9-8193-0e4894b9d404.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/7ab7450f-65ae-41d9-8193-0e4894b9d404.png differ diff --git a/pictures/7e115df3-d0e8-4bf3-8ffe-5998fbb5ac04.png b/pictures/7e115df3-d0e8-4bf3-8ffe-5998fbb5ac04.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/7e115df3-d0e8-4bf3-8ffe-5998fbb5ac04.png differ diff --git a/pictures/7f978b7f-e612-4eed-b0cd-6ffd31b83aaf.png b/pictures/7f978b7f-e612-4eed-b0cd-6ffd31b83aaf.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/7f978b7f-e612-4eed-b0cd-6ffd31b83aaf.png differ diff --git a/pictures/80ba0862-2d13-4a16-b8be-9bbf8854da78.png b/pictures/80ba0862-2d13-4a16-b8be-9bbf8854da78.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/80ba0862-2d13-4a16-b8be-9bbf8854da78.png differ diff --git a/pictures/84f9a0fd-9620-4c21-8ea2-c034ac269abe.png b/pictures/84f9a0fd-9620-4c21-8ea2-c034ac269abe.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/84f9a0fd-9620-4c21-8ea2-c034ac269abe.png differ diff --git a/pictures/854bf204-dddc-4dcd-a7f9-f27008428c7e.png b/pictures/854bf204-dddc-4dcd-a7f9-f27008428c7e.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/854bf204-dddc-4dcd-a7f9-f27008428c7e.png differ diff --git a/pictures/87de43aa-df1b-46d1-9965-d46178ade175.png b/pictures/87de43aa-df1b-46d1-9965-d46178ade175.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/87de43aa-df1b-46d1-9965-d46178ade175.png differ diff --git a/pictures/8a5a26a8-2c8d-4798-b1d1-adc6c31ed9d2.png b/pictures/8a5a26a8-2c8d-4798-b1d1-adc6c31ed9d2.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/8a5a26a8-2c8d-4798-b1d1-adc6c31ed9d2.png differ diff --git a/pictures/8ba3cfb6-9c0b-4aec-b1e6-df664bc4d7d9.png b/pictures/8ba3cfb6-9c0b-4aec-b1e6-df664bc4d7d9.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/8ba3cfb6-9c0b-4aec-b1e6-df664bc4d7d9.png differ diff --git a/pictures/8f2963fa-9ee8-40aa-bcb3-da5023aeb195.png b/pictures/8f2963fa-9ee8-40aa-bcb3-da5023aeb195.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/8f2963fa-9ee8-40aa-bcb3-da5023aeb195.png differ diff --git a/pictures/90d9b8ac-849b-4d07-9f28-e5bb0fe403db.png b/pictures/90d9b8ac-849b-4d07-9f28-e5bb0fe403db.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/90d9b8ac-849b-4d07-9f28-e5bb0fe403db.png differ diff --git a/pictures/9a6ee044-449c-403d-b806-2c5114493150.png b/pictures/9a6ee044-449c-403d-b806-2c5114493150.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/9a6ee044-449c-403d-b806-2c5114493150.png differ diff --git a/pictures/9b3cf487-31be-4f78-abce-c229de42cbd9.png b/pictures/9b3cf487-31be-4f78-abce-c229de42cbd9.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/9b3cf487-31be-4f78-abce-c229de42cbd9.png differ diff --git a/pictures/9bfcf44e-46b8-4a9d-be8e-41ccede468ba.png b/pictures/9bfcf44e-46b8-4a9d-be8e-41ccede468ba.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/9bfcf44e-46b8-4a9d-be8e-41ccede468ba.png differ diff --git a/pictures/9c4405c9-5638-4d17-bed9-d51365b5e47f.png b/pictures/9c4405c9-5638-4d17-bed9-d51365b5e47f.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/9c4405c9-5638-4d17-bed9-d51365b5e47f.png differ diff --git a/pictures/9e20ec16-8c2b-4135-be8f-83b047fff01e.png b/pictures/9e20ec16-8c2b-4135-be8f-83b047fff01e.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/9e20ec16-8c2b-4135-be8f-83b047fff01e.png differ diff --git a/pictures/9eaa47ae-4463-4f34-9305-0e69ca462396.png b/pictures/9eaa47ae-4463-4f34-9305-0e69ca462396.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/9eaa47ae-4463-4f34-9305-0e69ca462396.png differ diff --git a/pictures/a350713a-7ed8-4a07-9394-bdeb5c56fe9f.png b/pictures/a350713a-7ed8-4a07-9394-bdeb5c56fe9f.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/a350713a-7ed8-4a07-9394-bdeb5c56fe9f.png differ diff --git a/pictures/a3927cb7-c9b2-41d0-92bc-ba0152ffd79a.png b/pictures/a3927cb7-c9b2-41d0-92bc-ba0152ffd79a.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/a3927cb7-c9b2-41d0-92bc-ba0152ffd79a.png differ diff --git a/pictures/a57e0167-879a-46a4-9928-b18a84d1da59.png b/pictures/a57e0167-879a-46a4-9928-b18a84d1da59.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/a57e0167-879a-46a4-9928-b18a84d1da59.png differ diff --git a/pictures/a79e21a1-31a3-4cb0-b820-ba7d9f8843d3.png b/pictures/a79e21a1-31a3-4cb0-b820-ba7d9f8843d3.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/a79e21a1-31a3-4cb0-b820-ba7d9f8843d3.png differ diff --git a/pictures/a9414269-2b6f-4d24-a752-6c7aff1aa69a.png b/pictures/a9414269-2b6f-4d24-a752-6c7aff1aa69a.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/a9414269-2b6f-4d24-a752-6c7aff1aa69a.png differ diff --git a/pictures/a9a070b9-d59a-450e-b20d-f0f263e12831.png b/pictures/a9a070b9-d59a-450e-b20d-f0f263e12831.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/a9a070b9-d59a-450e-b20d-f0f263e12831.png differ diff --git a/pictures/a9b42bfd-eff6-4eb9-a7b2-9626c1461291.png b/pictures/a9b42bfd-eff6-4eb9-a7b2-9626c1461291.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/a9b42bfd-eff6-4eb9-a7b2-9626c1461291.png differ diff --git a/pictures/ac03ba22-a7f6-4c33-8a64-bba7ff9bc8fe.png b/pictures/ac03ba22-a7f6-4c33-8a64-bba7ff9bc8fe.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/ac03ba22-a7f6-4c33-8a64-bba7ff9bc8fe.png differ diff --git a/pictures/ae01e3db-7991-4acd-b94f-2bba3e3d54c3.png b/pictures/ae01e3db-7991-4acd-b94f-2bba3e3d54c3.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/ae01e3db-7991-4acd-b94f-2bba3e3d54c3.png differ diff --git a/pictures/b2a5d6d9-b55b-4d7c-b7eb-c7bf3d533039.png b/pictures/b2a5d6d9-b55b-4d7c-b7eb-c7bf3d533039.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/b2a5d6d9-b55b-4d7c-b7eb-c7bf3d533039.png differ diff --git a/pictures/b74aaecb-cec7-4140-a1a7-1b6e331492ae.png b/pictures/b74aaecb-cec7-4140-a1a7-1b6e331492ae.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/b74aaecb-cec7-4140-a1a7-1b6e331492ae.png differ diff --git a/pictures/ba2235bc-f049-429b-aa88-e9108626bd19.png b/pictures/ba2235bc-f049-429b-aa88-e9108626bd19.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/ba2235bc-f049-429b-aa88-e9108626bd19.png differ diff --git a/pictures/bf94edb6-4854-4d36-bf33-eb580f685aae.png b/pictures/bf94edb6-4854-4d36-bf33-eb580f685aae.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/bf94edb6-4854-4d36-bf33-eb580f685aae.png differ diff --git a/pictures/c3aaa7ef-c0d3-4034-8fcd-0e06b281805f.png b/pictures/c3aaa7ef-c0d3-4034-8fcd-0e06b281805f.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/c3aaa7ef-c0d3-4034-8fcd-0e06b281805f.png differ diff --git a/pictures/c3bcc1e9-d36c-40b5-820d-79013cfd3460.png b/pictures/c3bcc1e9-d36c-40b5-820d-79013cfd3460.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/c3bcc1e9-d36c-40b5-820d-79013cfd3460.png differ diff --git a/pictures/c5e834f5-43b1-48a2-a9b2-5278b8d98b69.png b/pictures/c5e834f5-43b1-48a2-a9b2-5278b8d98b69.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/c5e834f5-43b1-48a2-a9b2-5278b8d98b69.png differ diff --git a/pictures/c75f0244-cbe3-421f-ab9a-cb65f7ba4fc4.png b/pictures/c75f0244-cbe3-421f-ab9a-cb65f7ba4fc4.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/c75f0244-cbe3-421f-ab9a-cb65f7ba4fc4.png differ diff --git a/pictures/c8b3f823-b9c2-42e2-9637-af2211a96db4.png b/pictures/c8b3f823-b9c2-42e2-9637-af2211a96db4.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/c8b3f823-b9c2-42e2-9637-af2211a96db4.png differ diff --git a/pictures/cb4934fa-43eb-40bb-8871-b917e606e5c3.png b/pictures/cb4934fa-43eb-40bb-8871-b917e606e5c3.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/cb4934fa-43eb-40bb-8871-b917e606e5c3.png differ diff --git a/pictures/cd9f08c8-b981-4cba-9b71-245d24007817.png b/pictures/cd9f08c8-b981-4cba-9b71-245d24007817.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/cd9f08c8-b981-4cba-9b71-245d24007817.png differ diff --git a/pictures/ced9358f-4088-4a1d-8a9e-3e26d2cda055.png b/pictures/ced9358f-4088-4a1d-8a9e-3e26d2cda055.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/ced9358f-4088-4a1d-8a9e-3e26d2cda055.png differ diff --git a/pictures/d1556b32-1e0a-4081-88de-a2445661ed9d.png b/pictures/d1556b32-1e0a-4081-88de-a2445661ed9d.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/d1556b32-1e0a-4081-88de-a2445661ed9d.png differ diff --git a/pictures/d15e3d44-fea3-4fc7-82d5-6cb71142f6ac.png b/pictures/d15e3d44-fea3-4fc7-82d5-6cb71142f6ac.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/d15e3d44-fea3-4fc7-82d5-6cb71142f6ac.png differ diff --git a/pictures/d293a594-e23c-4b8c-aa07-4924931e210c.png b/pictures/d293a594-e23c-4b8c-aa07-4924931e210c.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/d293a594-e23c-4b8c-aa07-4924931e210c.png differ diff --git a/pictures/d56ecc4e-9705-437d-870b-5d0c39f94902.png b/pictures/d56ecc4e-9705-437d-870b-5d0c39f94902.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/d56ecc4e-9705-437d-870b-5d0c39f94902.png differ diff --git a/pictures/d642241d-e9c0-40ee-b7a6-1d6b5b4e395b.png b/pictures/d642241d-e9c0-40ee-b7a6-1d6b5b4e395b.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/d642241d-e9c0-40ee-b7a6-1d6b5b4e395b.png differ diff --git a/pictures/d8735d7b-a032-41f6-811f-4443fc556b89.png b/pictures/d8735d7b-a032-41f6-811f-4443fc556b89.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/d8735d7b-a032-41f6-811f-4443fc556b89.png differ diff --git a/pictures/d96c9a58-c16a-4b4d-a4f3-c3a30dd3ee9d.png b/pictures/d96c9a58-c16a-4b4d-a4f3-c3a30dd3ee9d.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/d96c9a58-c16a-4b4d-a4f3-c3a30dd3ee9d.png differ diff --git a/pictures/d97ed0a8-0124-4017-9c32-bcfc2ef4050e.png b/pictures/d97ed0a8-0124-4017-9c32-bcfc2ef4050e.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/d97ed0a8-0124-4017-9c32-bcfc2ef4050e.png differ diff --git a/pictures/da9a3329-3945-4e03-b807-5a9c15e3033a.png b/pictures/da9a3329-3945-4e03-b807-5a9c15e3033a.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/da9a3329-3945-4e03-b807-5a9c15e3033a.png differ diff --git a/pictures/dbd50d4b-3d99-41b3-aacd-99d155884f78.png b/pictures/dbd50d4b-3d99-41b3-aacd-99d155884f78.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/dbd50d4b-3d99-41b3-aacd-99d155884f78.png differ diff --git a/pictures/dd66c221-af6f-4e33-a480-f6523148b668.png b/pictures/dd66c221-af6f-4e33-a480-f6523148b668.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/dd66c221-af6f-4e33-a480-f6523148b668.png differ diff --git a/pictures/ddca6575-b5fb-4d01-a5b5-06f3e8cb9ee7.png b/pictures/ddca6575-b5fb-4d01-a5b5-06f3e8cb9ee7.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/ddca6575-b5fb-4d01-a5b5-06f3e8cb9ee7.png differ diff --git a/pictures/e0f6c1ce-02ce-4593-b233-b8c7653fe15d.png b/pictures/e0f6c1ce-02ce-4593-b233-b8c7653fe15d.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/e0f6c1ce-02ce-4593-b233-b8c7653fe15d.png differ diff --git a/pictures/e1141d46-c69a-4a6a-b6ca-8ed34ce4d028.png b/pictures/e1141d46-c69a-4a6a-b6ca-8ed34ce4d028.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/e1141d46-c69a-4a6a-b6ca-8ed34ce4d028.png differ diff --git a/pictures/e214c966-b746-4098-80f5-4db2a31b68e1.png b/pictures/e214c966-b746-4098-80f5-4db2a31b68e1.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/e214c966-b746-4098-80f5-4db2a31b68e1.png differ diff --git a/pictures/e48a6e78-c285-4485-8899-9364263f00e8.png b/pictures/e48a6e78-c285-4485-8899-9364263f00e8.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/e48a6e78-c285-4485-8899-9364263f00e8.png differ diff --git a/pictures/e5cd1bfa-7c11-42bb-8ebd-f270a6f44192.png b/pictures/e5cd1bfa-7c11-42bb-8ebd-f270a6f44192.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/e5cd1bfa-7c11-42bb-8ebd-f270a6f44192.png differ diff --git a/pictures/e73ea7ac-a14b-4169-a23d-ab7e7d0209d5.png b/pictures/e73ea7ac-a14b-4169-a23d-ab7e7d0209d5.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/e73ea7ac-a14b-4169-a23d-ab7e7d0209d5.png differ diff --git a/pictures/e765c414-c485-4840-81f2-2abd0e0abcd0.png b/pictures/e765c414-c485-4840-81f2-2abd0e0abcd0.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/e765c414-c485-4840-81f2-2abd0e0abcd0.png differ diff --git a/pictures/e804f92d-4abc-4ee8-af15-ff203627c818.png b/pictures/e804f92d-4abc-4ee8-af15-ff203627c818.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/e804f92d-4abc-4ee8-af15-ff203627c818.png differ diff --git a/pictures/e8ebcab4-434b-455d-9a5a-307395594f17.png b/pictures/e8ebcab4-434b-455d-9a5a-307395594f17.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/e8ebcab4-434b-455d-9a5a-307395594f17.png differ diff --git a/pictures/eb50bf6d-70de-401c-a8ae-70a62774e92d.png b/pictures/eb50bf6d-70de-401c-a8ae-70a62774e92d.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/eb50bf6d-70de-401c-a8ae-70a62774e92d.png differ diff --git a/pictures/ecfb08e5-a199-4d95-ac4b-77349e6c693d.png b/pictures/ecfb08e5-a199-4d95-ac4b-77349e6c693d.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/ecfb08e5-a199-4d95-ac4b-77349e6c693d.png differ diff --git a/pictures/efefbc5d-4abb-435d-a6f9-820e190174ef.png b/pictures/efefbc5d-4abb-435d-a6f9-820e190174ef.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/efefbc5d-4abb-435d-a6f9-820e190174ef.png differ diff --git a/pictures/f2c95440-dae2-4cf1-95c0-59b9e818ac4c.png b/pictures/f2c95440-dae2-4cf1-95c0-59b9e818ac4c.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/f2c95440-dae2-4cf1-95c0-59b9e818ac4c.png differ diff --git a/pictures/f6fad437-750a-4972-bda9-bf5c14b0168b.png b/pictures/f6fad437-750a-4972-bda9-bf5c14b0168b.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/f6fad437-750a-4972-bda9-bf5c14b0168b.png differ diff --git a/pictures/f7abc357-a483-424e-8118-187d3947c35c.png b/pictures/f7abc357-a483-424e-8118-187d3947c35c.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/f7abc357-a483-424e-8118-187d3947c35c.png differ diff --git a/pictures/fe2603ab-4b63-4d89-861f-571bbbf2c7c7.png b/pictures/fe2603ab-4b63-4d89-861f-571bbbf2c7c7.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/fe2603ab-4b63-4d89-861f-571bbbf2c7c7.png differ diff --git a/pictures/fe39316a-12b5-4077-91dc-8b987c8f7b78.png b/pictures/fe39316a-12b5-4077-91dc-8b987c8f7b78.png new file mode 100644 index 0000000..a487741 Binary files /dev/null and b/pictures/fe39316a-12b5-4077-91dc-8b987c8f7b78.png differ diff --git a/pom.xml b/pom.xml index b6c6f81..3b28165 100644 --- a/pom.xml +++ b/pom.xml @@ -67,6 +67,10 @@ httpclient 4.5.13 + + org.springframework.boot + spring-boot-starter-amqp + diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/component/Result.java b/src/main/java/cn/edu/ecnu/stu/bookstore/component/Result.java index 490bf0b..2de5b71 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/component/Result.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/component/Result.java @@ -17,15 +17,6 @@ public class Result { this.data = data; } - @Override - public String toString() { - return "Result{" + - "data=" + data + - ", message='" + message + '\'' + - ", code='" + code + '\'' + - '}'; - } - public static Result success(Object data) { return new Result(Constants.SUCCESS, "ok", data); } diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/config/RabbitMqConfig.java b/src/main/java/cn/edu/ecnu/stu/bookstore/config/RabbitMqConfig.java new file mode 100644 index 0000000..f093ac0 --- /dev/null +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/config/RabbitMqConfig.java @@ -0,0 +1,37 @@ +package cn.edu.ecnu.stu.bookstore.config; + +import org.springframework.amqp.core.*; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +import java.util.HashMap; +import java.util.Map; + +@Configuration +public class RabbitMqConfig { + + public static final String EXPIRED_ORDER_EXCHANGE = "exchange.expire.order"; + + public static final String EXPIRED_ORDER_QUEUE = "queue.expire.order"; + + public static final String EXPIRED_ORDER_ROUTING_KEY = "routingKey.expire.order"; + + public static final int ORDER_EXPIRE_TIME = 1000 * 60 * 15; + + @Bean + public Queue expiredOrderQueue() { + return new Queue(EXPIRED_ORDER_QUEUE, true); + } + + @Bean + public CustomExchange expiredOrderExchange() { + Map map = new HashMap<>(); + map.put("x-delayed-type","direct"); + return new CustomExchange(EXPIRED_ORDER_EXCHANGE, "x-delayed-message", true, false, map); + } + + @Bean + public Binding expiredOrderBinding() { + return BindingBuilder.bind(expiredOrderQueue()).to(expiredOrderExchange()).with(EXPIRED_ORDER_ROUTING_KEY).noargs(); + } +} diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/controller/TestController.java b/src/main/java/cn/edu/ecnu/stu/bookstore/controller/TestController.java index 8714da3..06b4eb3 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/controller/TestController.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/controller/TestController.java @@ -1,15 +1,40 @@ package cn.edu.ecnu.stu.bookstore.controller; import cn.edu.ecnu.stu.bookstore.component.Result; +import cn.edu.ecnu.stu.bookstore.config.RabbitMqConfig; +import com.rabbitmq.client.Channel; +import org.springframework.amqp.core.Message; +import org.springframework.amqp.rabbit.annotation.RabbitListener; +import org.springframework.amqp.rabbit.core.RabbitTemplate; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.GetMapping; +import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; @RestController public class TestController { + @Autowired + private RabbitTemplate rabbitTemplate; + @GetMapping("/test") public Result test() { return Result.success("hello, test"); } + + @GetMapping("/testmq") + public Result testmq(@RequestParam("message") String message) { + rabbitTemplate.convertAndSend(RabbitMqConfig.EXPIRED_ORDER_EXCHANGE, RabbitMqConfig.EXPIRED_ORDER_ROUTING_KEY, + message, message1 -> { + message1.getMessageProperties().setDelay(5000); + return message1; + }); + return Result.success(); + } + +// @RabbitListener(queues = RabbitMqConfig.EXPIRED_ORDER_QUEUE) +// public void processExpiredOrder(String msg, Channel channel, Message message) { +// System.out.println(msg); +// } } diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/listener/ExpiredOrderListener.java b/src/main/java/cn/edu/ecnu/stu/bookstore/listener/ExpiredOrderListener.java new file mode 100644 index 0000000..af453c2 --- /dev/null +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/listener/ExpiredOrderListener.java @@ -0,0 +1,26 @@ +package cn.edu.ecnu.stu.bookstore.listener; + +import cn.edu.ecnu.stu.bookstore.config.RabbitMqConfig; +import cn.edu.ecnu.stu.bookstore.mapper.OrderMapper; +import cn.edu.ecnu.stu.bookstore.pojo.OrderStatus; +import com.rabbitmq.client.Channel; +import org.springframework.amqp.core.Message; +import org.springframework.amqp.rabbit.annotation.RabbitListener; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Component; + +@Component +public class ExpiredOrderListener { + + @Autowired + private OrderMapper orderMapper; + + @RabbitListener(queues = RabbitMqConfig.EXPIRED_ORDER_QUEUE) + public void processExpiredOrder(String msg, Channel channel, Message message) { + System.out.println(msg + "过期"); + OrderStatus status = OrderStatus.getByValue(orderMapper.selectStatus(msg)); + if(OrderStatus.WAIT_PAYMENT.equals(status)) { + orderMapper.updateOrderStatus(msg, OrderStatus.CANCEL); + } + } +} diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/mapper/BookMapper.java b/src/main/java/cn/edu/ecnu/stu/bookstore/mapper/BookMapper.java index 1ce6c8c..2a182ba 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/mapper/BookMapper.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/mapper/BookMapper.java @@ -11,10 +11,6 @@ import java.util.Set; @Mapper public interface BookMapper { - @Insert("insert into t_book(book_id, store_id, title, author, publisher," + - "original_title, translator, pub_year, pages, price, binding, isbn, stock_level)" + - "values (#{book.bookId}, #{book.storeId}, #{book.title}, #{book.author}, #{book.publisher}, #{book.originalTitle}, " + - "#{book.translator}, #{book.pubYear}, #{book.pages}, #{book.price}, #{book.binding}, #{book.isbn}, #{book.stockLevel})") int insert(@Param("book") Book book); List selectTags(@Param("book_id") String bookId); diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/mapper/OrderMapper.java b/src/main/java/cn/edu/ecnu/stu/bookstore/mapper/OrderMapper.java index 1ddb79f..e1a0f7d 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/mapper/OrderMapper.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/mapper/OrderMapper.java @@ -31,4 +31,6 @@ public interface OrderMapper { @Select("select count(*) from t_order where buyer_id = #{buyerId} and order_id = #{orderId}") int checkOrder(@Param("orderId") String orderId, @Param("buyerId") Integer buyerId); + + int selectStatus(@Param("orderId") String orderId); } diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/Book.java b/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/Book.java index 577818f..1b2e5cc 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/Book.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/Book.java @@ -8,7 +8,6 @@ import java.math.BigDecimal; import java.util.List; @Data -@AllArgsConstructor @NoArgsConstructor public class Book { diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/LoginUser.java b/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/LoginUser.java index 9ef4fed..a76bc3c 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/LoginUser.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/LoginUser.java @@ -9,8 +9,6 @@ import org.springframework.security.core.userdetails.UserDetails; import java.io.Serializable; import java.util.Collection; -@Data -@NoArgsConstructor @AllArgsConstructor public class LoginUser implements UserDetails { @@ -50,4 +48,8 @@ public class LoginUser implements UserDetails { public boolean isEnabled() { return true; } + + public User getUser() { + return user; + } } diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/OrderStatus.java b/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/OrderStatus.java index b6a736a..b8f3c8f 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/OrderStatus.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/OrderStatus.java @@ -18,6 +18,10 @@ public enum OrderStatus{ return value; } + public void setValue(int value) { + this.value = value; + } + public static OrderStatus getByValue(int val) { for(OrderStatus status : values()) { if(status.value == val) diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/Store.java b/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/Store.java index 1ca1f90..6812b6f 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/Store.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/Store.java @@ -8,7 +8,6 @@ import java.sql.Date; @Data @NoArgsConstructor -@AllArgsConstructor public class Store { private String storeId; diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/User.java b/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/User.java index d0bb89b..c60b5ae 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/User.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/User.java @@ -11,7 +11,6 @@ import lombok.NoArgsConstructor; import java.math.BigDecimal; @NoArgsConstructor -@AllArgsConstructor @Data public class User { diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/vo/NewOrderVO.java b/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/vo/NewOrderVO.java index 74d5e27..4d1c463 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/vo/NewOrderVO.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/pojo/vo/NewOrderVO.java @@ -9,7 +9,6 @@ import java.util.Map; @Data @NoArgsConstructor -@AllArgsConstructor public class NewOrderVO { private String storeId; diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/service/impl/BookService.java b/src/main/java/cn/edu/ecnu/stu/bookstore/service/impl/BookService.java index b62dbac..f776c8d 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/service/impl/BookService.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/service/impl/BookService.java @@ -2,10 +2,12 @@ package cn.edu.ecnu.stu.bookstore.service.impl; import cn.edu.ecnu.stu.bookstore.mapper.BookMapper; import cn.edu.ecnu.stu.bookstore.pojo.Book; +import cn.edu.ecnu.stu.bookstore.utils.ImageUtil; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; import java.util.List; +import java.util.stream.Collectors; @Service public class BookService { @@ -13,27 +15,33 @@ public class BookService { @Autowired private BookMapper bookMapper; + private List switchPicture(List books) { + for (Book book : books) { + book.setPictures(book.getPictures().stream().map(ImageUtil::convertImageToBase64Str).collect(Collectors.toList())); + } + return books; + } + public List getBookByTitle(String title, String storeId, Integer pageNum, Integer pageSize) { int start = (pageNum - 1) * pageSize; - return bookMapper.getBookByTitle(title, storeId, start, pageSize); - + return switchPicture(bookMapper.getBookByTitle(title, storeId, start, pageSize)); } public List getBookByAuthor(String author, String storeId, Integer pageNum, Integer pageSize) { int start = (pageNum - 1) * pageSize; - return bookMapper.getBookByAuthor(author, storeId, start, pageSize); + return switchPicture(bookMapper.getBookByAuthor(author, storeId, start, pageSize)); } public List getBookByTag(String tag, String storeId, Integer pageNum, Integer pageSize) { int start = (pageNum - 1) * pageSize; - return bookMapper.getBookByTag(tag, storeId, start, pageSize); + return switchPicture(bookMapper.getBookByTag(tag, storeId, start, pageSize)); } public List getBookByContent(String content, String storeId, Integer pageNum, Integer pageSize) { int start = (pageNum - 1) * pageSize; - return bookMapper.getBookByContent(content, storeId, start, pageSize); + return switchPicture(bookMapper.getBookByContent(content, storeId, start, pageSize)); } } diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/service/impl/BuyerService.java b/src/main/java/cn/edu/ecnu/stu/bookstore/service/impl/BuyerService.java index 5e098fc..2e77cf2 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/service/impl/BuyerService.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/service/impl/BuyerService.java @@ -2,12 +2,14 @@ package cn.edu.ecnu.stu.bookstore.service.impl; import cn.edu.ecnu.stu.bookstore.component.AppException; import cn.edu.ecnu.stu.bookstore.component.Constants; +import cn.edu.ecnu.stu.bookstore.config.RabbitMqConfig; import cn.edu.ecnu.stu.bookstore.mapper.BookMapper; import cn.edu.ecnu.stu.bookstore.mapper.OrderMapper; import cn.edu.ecnu.stu.bookstore.mapper.StoreMapper; import cn.edu.ecnu.stu.bookstore.mapper.UserMapper; import cn.edu.ecnu.stu.bookstore.pojo.*; import cn.edu.ecnu.stu.bookstore.pojo.vo.NewOrderVO; +import org.springframework.amqp.rabbit.core.RabbitTemplate; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Lazy; import org.springframework.security.core.context.SecurityContextHolder; @@ -41,6 +43,9 @@ public class BuyerService { @Lazy private BuyerService buyerService; + @Autowired + private RabbitTemplate rabbitTemplate; + public void newOrder(NewOrderVO newOrderVO) { List> bookList = newOrderVO.getBooks(); if(bookList.size() < 1) @@ -87,6 +92,11 @@ public class BuyerService { Book book = (Book)map.get("book"); bookMapper.minusStockLevel(book.getBookId(), (int)map.get("count")); } + rabbitTemplate.convertAndSend(RabbitMqConfig.EXPIRED_ORDER_EXCHANGE, RabbitMqConfig.EXPIRED_ORDER_ROUTING_KEY, + orderId, message -> { + message.getMessageProperties().setDelay(10000); + return message; + }); } public void payment(Integer userId, String orderId, String password) { diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/service/impl/UserServiceImpl.java b/src/main/java/cn/edu/ecnu/stu/bookstore/service/impl/UserServiceImpl.java index 4cbc43c..43e2b50 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/service/impl/UserServiceImpl.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/service/impl/UserServiceImpl.java @@ -36,10 +36,6 @@ public class UserServiceImpl implements UserService { @Autowired private RedisTemplate redisTemplate; - public User selectOneById(Integer id) { - return userMapper.selectOneById(id); - } - public void register(User user) { if(!StringUtils.hasLength(user.getUsername())) throw new AppException(Constants.CLIENT_ERROR, Constants.PARAMETER_ERROR_MESSAGE); diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/utils/JwtUtil.java b/src/main/java/cn/edu/ecnu/stu/bookstore/utils/JwtUtil.java index 369c37e..997a47d 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/utils/JwtUtil.java +++ b/src/main/java/cn/edu/ecnu/stu/bookstore/utils/JwtUtil.java @@ -41,10 +41,5 @@ public class JwtUtil { return JSON.parseObject(jwt.getClaim("data").asString(), clazz); } - public static Date getTokenExpiration(String token) { - DecodedJWT jwt = JWT.require(Algorithm.HMAC256(SING)).build().verify(token); - return jwt.getExpiresAt(); - } - } diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml index d27d583..2834c04 100644 --- a/src/main/resources/application.yml +++ b/src/main/resources/application.yml @@ -15,7 +15,14 @@ spring: password: qwe030318 driver-class-name: com.mysql.cj.jdbc.Driver type: com.alibaba.druid.pool.DruidDataSource + redis: - host: 106.75.116.246 + host: 106.75.11.111 port: 6379 password: qwe030318 + + rabbitmq: + host: 106.75.11.111 + port: 5672 + username: guest + password: qwe030318 diff --git a/src/main/resources/mapper/BookMapper.xml b/src/main/resources/mapper/BookMapper.xml index f987123..e9faf3d 100644 --- a/src/main/resources/mapper/BookMapper.xml +++ b/src/main/resources/mapper/BookMapper.xml @@ -16,6 +16,20 @@ (#{book_id}, #{picture}) + + insert into t_book(book_id, store_id, title, author, publisher, + original_title, translator, pub_year, pages, price, binding, isbn + + , stock_level + + ) + values (#{book.bookId}, #{book.storeId}, #{book.title}, #{book.author}, #{book.publisher}, #{book.originalTitle}, + #{book.translator}, #{book.pubYear}, #{book.pages}, #{book.price}, #{book.binding}, #{book.isbn} + + , #{book.stockLevel} + + ) + + + \ No newline at end of file diff --git a/src/test/java/cn/edu/ecnu/stu/bookstore/AuthTest.java b/src/test/java/cn/edu/ecnu/stu/bookstore/AuthTest.java index 14c241c..3e0e793 100644 --- a/src/test/java/cn/edu/ecnu/stu/bookstore/AuthTest.java +++ b/src/test/java/cn/edu/ecnu/stu/bookstore/AuthTest.java @@ -2,9 +2,11 @@ package cn.edu.ecnu.stu.bookstore; import cn.edu.ecnu.stu.bookstore.component.Constants; import cn.edu.ecnu.stu.bookstore.component.Result; -import cn.edu.ecnu.stu.bookstore.utils.RequestUtil; +import cn.edu.ecnu.stu.bookstore.mapper.OrderMapper; +import cn.edu.ecnu.stu.bookstore.util.RequestUtil; import com.alibaba.fastjson.JSONObject; import org.junit.jupiter.api.Test; +import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import java.util.HashMap; diff --git a/src/test/java/cn/edu/ecnu/stu/bookstore/BookTest.java b/src/test/java/cn/edu/ecnu/stu/bookstore/BookTest.java new file mode 100644 index 0000000..e9e7d6f --- /dev/null +++ b/src/test/java/cn/edu/ecnu/stu/bookstore/BookTest.java @@ -0,0 +1,234 @@ +package cn.edu.ecnu.stu.bookstore; + +import cn.edu.ecnu.stu.bookstore.component.Constants; +import cn.edu.ecnu.stu.bookstore.component.Result; +import cn.edu.ecnu.stu.bookstore.utils.ImageUtil; +import cn.edu.ecnu.stu.bookstore.util.RequestUtil; +import com.alibaba.fastjson.JSONArray; +import com.alibaba.fastjson.JSONObject; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +import java.math.BigDecimal; +import java.util.*; + +@SpringBootTest +public class BookTest { + + private String token; + + private String storeId; + + private String title; + + private String content; + + private String author; + + private List tags; + + private String bookId; + + @BeforeEach + public void init() { + if(token != null) + return; + String url = Constants.URL_PREFIX + "/auth/register"; + Map map = new HashMap<>(); + String username = UUID.randomUUID().toString(); + String password = username + "x"; + map.put("username", username); + map.put("password", password); + Result result = RequestUtil.post(url, map, null); + assert result != null && result.getCode() != null && result.getCode().equals(Constants.SUCCESS); + + url = Constants.URL_PREFIX + "/auth/login"; + result = RequestUtil.post(url, map, null); + assert result != null && result.getCode() != null && result.getCode().equals(Constants.SUCCESS); + + JSONObject data = (JSONObject) result.getData(); + token = data.getString("token"); + + url = Constants.URL_PREFIX + "/seller/create_store"; + map = new HashMap<>(); + storeId = "store" + UUID.randomUUID(); + map.put("storeId", storeId); + result = RequestUtil.post(url, map, token); + assert result != null && Constants.SUCCESS.equals(result.getCode()); + + result = RequestUtil.post(url, map, token); + assert result != null && Constants.CLIENT_ERROR.equals(result.getCode()); + + bookId = "book" + UUID.randomUUID(); + url = Constants.URL_PREFIX + "/seller/add_book"; + title = "title" + UUID.randomUUID(); + author = "author" + UUID.randomUUID(); + String publisher = "publisher" + UUID.randomUUID(); + BigDecimal price = new BigDecimal("29.88"); + String authorIntro = "authorIntro" + UUID.randomUUID(); + String bookIntro = "bookIntro" + UUID.randomUUID(); + content = "content" + UUID.randomUUID(); + tags = Arrays.asList("tag" + UUID.randomUUID(), "tag" + UUID.randomUUID()); + List pictures = Arrays.asList(ImageUtil.convertImageToBase64Str("ff3c65cd-497e-4b17-aa55-5882a38ed2fd.png")); + map = new HashMap<>(); + map.put("storeId", storeId); + map.put("bookId", bookId); + map.put("title", title); + map.put("author", author); + map.put("publisher", publisher); + map.put("price", price); + map.put("authorIntro", authorIntro); + map.put("bookIntro", bookIntro); + map.put("content", content); + map.put("tags", tags); + map.put("pictures", pictures); + result = RequestUtil.post(url, map, token); + assert result != null && Constants.SUCCESS.equals(result.getCode()); + } + + @Test + public void testGetBookByTitle() { + String url = Constants.URL_PREFIX + "/book/title"; + HashMap map = new HashMap<>(); + map.put("title", title); + Result result = RequestUtil.get(url, map, token); + assert result != null; + JSONArray data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() > 0; + + map.put("title", title + "_x"); + result = RequestUtil.get(url, map, token); + assert result != null; + data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() == 0; + } + + @Test + public void testGetBookByTitleInStore() { + String url = Constants.URL_PREFIX + "/book/title_in_store"; + HashMap map = new HashMap<>(); + map.put("title", title); + map.put("storeId", storeId); + Result result = RequestUtil.get(url, map, token); + assert result != null; + JSONArray data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() > 0; + + map.put("title", title); + map.put("storeId", storeId + "_x"); + result = RequestUtil.get(url, map, token); + assert result != null; + data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() == 0; + } + + @Test + public void testGetBookByAuthor() { + String url = Constants.URL_PREFIX + "/book/author"; + HashMap map = new HashMap<>(); + map.put("author", author); + Result result = RequestUtil.get(url, map, token); + assert result != null; + JSONArray data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() > 0; + + map.put("author", author + "_x"); + result = RequestUtil.get(url, map, token); + assert result != null; + data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() == 0; + } + + @Test + public void testGetBookByAuthorInStore() { + String url = Constants.URL_PREFIX + "/book/author_in_store"; + HashMap map = new HashMap<>(); + map.put("author", author); + map.put("storeId", storeId); + Result result = RequestUtil.get(url, map, token); + assert result != null; + JSONArray data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() > 0; + + map.put("author", author); + map.put("storeId", storeId + "_x"); + result = RequestUtil.get(url, map, token); + assert result != null; + data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() == 0; + } + + @Test + public void testGetBookByTag() { + String url = Constants.URL_PREFIX + "/book/tag"; + HashMap map = new HashMap<>(); + for(String tag : tags) { + map.put("tag", tag); + Result result = RequestUtil.get(url, map, token); + assert result != null; + JSONArray data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() > 0; + + map.put("tag", tag + "_x"); + result = RequestUtil.get(url, map, token); + assert result != null; + data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() == 0; + } + } + + @Test + public void testGetBookByTagInStore() { + String url = Constants.URL_PREFIX + "/book/tag_in_store"; + HashMap map = new HashMap<>(); + + for(String tag : tags) { + map.put("tag", tag); + map.put("storeId", storeId); + Result result = RequestUtil.get(url, map, token); + assert result != null; + JSONArray data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() > 0; + + map.put("storeId", storeId + "_x"); + result = RequestUtil.get(url, map, token); + assert result != null; + data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() == 0; + } + + } + + @Test + public void testGetBookByContent() { + String url = Constants.URL_PREFIX + "/book/content"; + HashMap map = new HashMap<>(); + map.put("content", content); + Result result = RequestUtil.get(url, map, token); + assert result != null; + JSONArray data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() > 0; + } + + @Test + public void testGetBookByContentInStore() { + String url = Constants.URL_PREFIX + "/book/content_in_store"; + HashMap map = new HashMap<>(); + map.put("content", content); + map.put("storeId", storeId); + Result result = RequestUtil.get(url, map, token); + assert result != null; + JSONArray data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() > 0; + + map.put("content", content); + map.put("storeId", storeId + "_x"); + result = RequestUtil.get(url, map, token); + assert result != null; + data = (JSONArray) result.getData(); + assert Constants.SUCCESS.equals(result.getCode()) && data.size() == 0; + } + + +} diff --git a/src/test/java/cn/edu/ecnu/stu/bookstore/BuyerTest.java b/src/test/java/cn/edu/ecnu/stu/bookstore/BuyerTest.java index ced9831..49735c7 100644 --- a/src/test/java/cn/edu/ecnu/stu/bookstore/BuyerTest.java +++ b/src/test/java/cn/edu/ecnu/stu/bookstore/BuyerTest.java @@ -7,7 +7,7 @@ import cn.edu.ecnu.stu.bookstore.pojo.Order; import cn.edu.ecnu.stu.bookstore.pojo.OrderStatus; import cn.edu.ecnu.stu.bookstore.pojo.User; import cn.edu.ecnu.stu.bookstore.utils.ImageUtil; -import cn.edu.ecnu.stu.bookstore.utils.RequestUtil; +import cn.edu.ecnu.stu.bookstore.util.RequestUtil; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; diff --git a/src/test/java/cn/edu/ecnu/stu/bookstore/OrderTest.java b/src/test/java/cn/edu/ecnu/stu/bookstore/OrderTest.java index b6aff0e..4a6660b 100644 --- a/src/test/java/cn/edu/ecnu/stu/bookstore/OrderTest.java +++ b/src/test/java/cn/edu/ecnu/stu/bookstore/OrderTest.java @@ -2,13 +2,11 @@ package cn.edu.ecnu.stu.bookstore; import cn.edu.ecnu.stu.bookstore.component.Constants; import cn.edu.ecnu.stu.bookstore.component.Result; -import cn.edu.ecnu.stu.bookstore.pojo.Order; import cn.edu.ecnu.stu.bookstore.pojo.User; import cn.edu.ecnu.stu.bookstore.utils.ImageUtil; -import cn.edu.ecnu.stu.bookstore.utils.RequestUtil; +import cn.edu.ecnu.stu.bookstore.util.RequestUtil; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; -import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; diff --git a/src/test/java/cn/edu/ecnu/stu/bookstore/SellerTest.java b/src/test/java/cn/edu/ecnu/stu/bookstore/SellerTest.java index e4eb027..052815b 100644 --- a/src/test/java/cn/edu/ecnu/stu/bookstore/SellerTest.java +++ b/src/test/java/cn/edu/ecnu/stu/bookstore/SellerTest.java @@ -7,7 +7,7 @@ import cn.edu.ecnu.stu.bookstore.pojo.Order; import cn.edu.ecnu.stu.bookstore.pojo.OrderStatus; import cn.edu.ecnu.stu.bookstore.pojo.User; import cn.edu.ecnu.stu.bookstore.utils.ImageUtil; -import cn.edu.ecnu.stu.bookstore.utils.RequestUtil; +import cn.edu.ecnu.stu.bookstore.util.RequestUtil; import com.alibaba.fastjson.JSON; import com.alibaba.fastjson.JSONObject; import org.junit.jupiter.api.Test; diff --git a/src/main/java/cn/edu/ecnu/stu/bookstore/utils/RequestUtil.java b/src/test/java/cn/edu/ecnu/stu/bookstore/util/RequestUtil.java similarity index 86% rename from src/main/java/cn/edu/ecnu/stu/bookstore/utils/RequestUtil.java rename to src/test/java/cn/edu/ecnu/stu/bookstore/util/RequestUtil.java index 42dee0a..b2f1817 100644 --- a/src/main/java/cn/edu/ecnu/stu/bookstore/utils/RequestUtil.java +++ b/src/test/java/cn/edu/ecnu/stu/bookstore/util/RequestUtil.java @@ -1,4 +1,4 @@ -package cn.edu.ecnu.stu.bookstore.utils; +package cn.edu.ecnu.stu.bookstore.util; import cn.edu.ecnu.stu.bookstore.component.Result; import com.alibaba.fastjson.JSON; @@ -7,12 +7,14 @@ import org.apache.http.HttpResponse; import org.apache.http.client.HttpClient; import org.apache.http.client.methods.HttpGet; import org.apache.http.client.methods.HttpPost; +import org.apache.http.client.utils.URIBuilder; import org.apache.http.entity.StringEntity; import org.apache.http.impl.client.HttpClients; import org.apache.http.params.BasicHttpParams; import org.apache.http.util.EntityUtils; import java.io.IOException; +import java.net.URISyntaxException; import java.nio.charset.StandardCharsets; import java.util.Map; @@ -95,31 +97,34 @@ public class RequestUtil { return null; } - public static Result get(String url, Map params, String token) { + public static Result get(String url, Map params, String token) { // post请求 HttpClient httpClient; HttpGet httpGet; HttpResponse response; String responseContent; + URIBuilder uriBuilder = null; + try { // 创建 httpClient httpClient = HttpClients.createDefault(); - httpGet = new HttpGet(url); - httpGet.addHeader("Accept", "*/*"); - httpGet.addHeader("Content-Type", "application/json;charset=utf8"); - if(token != null) - httpGet.addHeader("token", token); - // set params if(params != null) { - BasicHttpParams httpParams = new BasicHttpParams(); - for (Map.Entry entry : params.entrySet()) { - httpParams.setParameter(entry.getKey(), entry.getValue()); + uriBuilder = new URIBuilder(url); + for (Map.Entry entry : params.entrySet()) { + uriBuilder.setParameter(entry.getKey(), entry.getValue()); } - httpGet.setParams(httpParams); } + if(uriBuilder == null) + httpGet = new HttpGet(url); + else + httpGet = new HttpGet(uriBuilder.build()); + httpGet.addHeader("Accept", "*/*"); + httpGet.addHeader("Content-Type", "application/json;charset=utf8"); + if(token != null) + httpGet.addHeader("token", token); // 发送请求 response = httpClient.execute(httpGet); @@ -135,6 +140,8 @@ public class RequestUtil { } catch (IOException e) { e.printStackTrace(); + } catch (URISyntaxException e) { + throw new RuntimeException(e); } return null; }