moqui-runtime icon indicating copy to clipboard operation
moqui-runtime copied to clipboard

Quasar vs Vue UI Server Issue

Open acetousk opened this issue 4 years ago • 0 comments

Steps to Reproduce:

  1. clone moqui-framework commit 722b9f29
  2. get the following components: hivemind pm, hivemind admin, popc erp, my account, system, and tools
  3. build and run with java -jar moqui.war
  4. clone https://github.com/acetousk/moqui-selenium commit f19907a
  5. on line 14 of src/test/groovy/ToolsTests.groovy ensure apps = "vapps"
  6. run the def "Entity/DataImport test"() test
  7. the test should pass
  8. on line 14 ensure apps = "qapps"
  9. run the def "Entity/DataImport test"() test
  10. the test should fail

What Happened

On lines 5-7 and lines 8-10, you are running the exact same code with a different file path. Lines 5-7 are running localhost:8080/vapps and lines 8-10 are running localhost:8080/qapps.

What Should Have Happened

The vapps test completes successfully after importing the data, but the qapps test does not. The qapps has a notification that says Error: Server Error (error). It should have done what the vapps test did by sending a notification that says: Submit successful.

While doing some of these tests, I have noticed this kind of message in several areas, but this is the easiest one to pinpoint.

acetousk avatar Sep 09 '20 20:09 acetousk