乐山LWM2M服务器

问题描述 投票:-1回答:2

我正在乐山(https://github.com/eclipse/leshan)工作。

我在命令行中运行了leshan项目,所以我使用此命令启动测试:mvn test

我有错误:

 Results :

    Failed tests:
      BootstrapTest.bootstrap:59 expected:<1> but was:<0>
      SecurityTest.register_update_reregister_device_with_psk_to_server_with_psk:130 Values should be different. Actual: qtjLtAHNqi
    Tests in error:
      ObserveTest.can_observe_object:137 NullPointer
      WriteTest.can_write_string_resource_in_tlv:74->write_string_resource:90 NullPointer

    Tests run: 100, Failures: 2, Errors: 2, Skipped: 13

    [INFO] ------------------------------------------------------------------------
    [INFO] Reactor Summary:
    [INFO]
    [INFO] leshan ............................................. SUCCESS [0.092 s]
    [INFO] leshan - core ...................................... SUCCESS [9.903 s]
    [INFO] leshan - server core ............................... SUCCESS [1.666 s]
    [INFO] leshan - server californium ........................ SUCCESS [2.778 s]
    [INFO] leshan - client core ............................... SUCCESS [1.663 s]
    [INFO] leshan - client californium ........................ SUCCESS [0.260 s]
    [INFO] leshan - integration tests .........................FAILURE [33.324 s]
    [INFO] leshan - server demo ............................... SKIPPED
    [INFO] leshan - client demo ............................... SKIPPED
    [INFO] leshan - bootstrap server demo ..................... SKIPPED
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 51.197 s
    [INFO] Finished at: 2016-06-07T13:50:17+02:00
    [INFO] Final Memory: 29M/288M
    [INFO] ------------------------------------------------------------------------
    [ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.19:test (default-test) on project leshan-integration-tests: There are test failures.
    [ERROR]
    [ERROR] Please refer to C:\dvp_win\leshan-master\leshan-integration-tests\target\surefire-reports for the individual test results.
    [ERROR] -> [Help 1]
    [ERROR]
    [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, please read the following articles:
    [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
    [ERROR]
    [ERROR] After correcting the problems, you can resume the build with the command
    [ERROR]   mvn <goals> -rf :leshan-integration-tests

你能帮帮我解决这个问题吗?

提前致谢

Hezouwe

java maven
2个回答
0
投票

不是一个很好的问题。但你的答案就在Maven输出中。

Failed tests:
  BootstrapTest.bootstrap:59 expected:<1> but was:<0>
  SecurityTest.register_update_reregister_device_with_psk_to_server_with_psk:130 Values should be different. Actual: qtjLtAHNqi
Tests in error:
  ObserveTest.can_observe_object:137 NullPointer
  WriteTest.can_write_string_resource_in_tlv:74->write_string_resource:90 NullPointer

查看BootstrapTest和SecurityTest。


0
投票

如果您想要无误地运行项目,最好跳过测试。命令 - mvn clean install -DskipTests请参阅github https://github.com/eclipse/leshan/issues/323

© www.soinside.com 2019 - 2024. All rights reserved.