com.google.zxing.NotFoundException Spring Boot QR Code Example JUnit Tests

I tried to implement an example of QR Code Generator in Spring Boot. I have a problem in Service Test and Controller Test. In Service Test, I cannot decode the byte values in QRCodeReader().decode(binaryBitmap) I get this error message shown below when I run any test method com.google.zxing.NotFoundException In Controller Test, I get this error message shown below when I run any test method
MockHttpServletResponse:
Status = 400
Error message = null
Headers = [Content-Type:"application/problem+json"]
Content type = application/problem+json
Body = {"type":"about:blank","title":"Bad Request","status":400,"detail":"Required part 'text' is not present.","instance":"/api/v1/qr-generator"}
Forwarded URL = null
Redirected URL = null
Cookies = []

java.lang.AssertionError: Status expected:<201> but was:<400>
Expected :201
Actual :400
MockHttpServletResponse:
Status = 400
Error message = null
Headers = [Content-Type:"application/problem+json"]
Content type = application/problem+json
Body = {"type":"about:blank","title":"Bad Request","status":400,"detail":"Required part 'text' is not present.","instance":"/api/v1/qr-generator"}
Forwarded URL = null
Redirected URL = null
Cookies = []

java.lang.AssertionError: Status expected:<201> but was:<400>
Expected :201
Actual :400
How can I fix it? Here is the link : https://github.com/Rapter1990/qr-generator-example
GitHub
GitHub - Rapter1990/qr-generator-example: QR Generator Example with...
QR Generator Example with Spring Boot. Contribute to Rapter1990/qr-generator-example development by creating an account on GitHub.
3 Replies
JavaBot
JavaBot2y ago
This post has been reserved for your question.
Hey @direct_x_34! Please use /close or the Close Post button above when you're finished. Please remember to follow the help guidelines. This post will be automatically closed after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here.
direct_x_34
direct_x_34OP2y ago
GitHub
qr-generator-example/QrControllerTest.java at master · Rapter1990/q...
QR Generator Example with Spring Boot. Contribute to Rapter1990/qr-generator-example development by creating an account on GitHub.
GitHub
qr-generator-example/QrServiceTest.java at master · Rapter1990/qr-g...
QR Generator Example with Spring Boot. Contribute to Rapter1990/qr-generator-example development by creating an account on GitHub.
JavaBot
JavaBot2y ago
💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one.

Did you find this page helpful?