عرض المصدر على جيثب |
يتضمن OpenWeave عددًا من نصوص Python النصية لاختبار وظائف Weave على طبولوجيا Happy المحاكاة. تضمن حالات الاختبار هذه تكوين الهيكل بشكل صحيح لاتصال الشبكة ونشر Weave.
تم العثور على مخطوطات الاختبار الحال في مستودع OpenWeave في /src/test-apps/happy/tests
. هناك نوعان من الاختبارات:
يركض
- قم بتثبيت OpenWeave. رؤية OpenWeave بناء دليل للتعليمات.
- تثبيت Happy. رؤية سعيد إعداد دليل للتعليمات.
- انتقل إلى الدليل الذي يحتوي على حالة الاختبار الهدف. على سبيل المثال، لتشغيل حالة اختبار الشخصية الصدى:
cd <path-to-openweave-core>/src/test-apps/happy/tests/standalone/echo
python test_weave_echo_01.py
Change test topology
OpenWeave test cases run against the sample Happy topologies found in
/src/test-apps/happy/topologies/standalone
.
To use your own custom Happy topology in a test case:
- After constructing your custom topology, save it in JSON format. This saves
the topology state file in the
$HOME
directory:happy-state -s my_topology.json
In the test case script, locate the topology file being used. Topologies in test cases are typically assigned to the
self.topology_file
variable. For example,test_weave_echo_01.py
uses the following topology for a default OpenWeave build:self.topology_file = os.path.dirname(os.path.realpath(__file__)) + \ "/../../../topologies/standalone/three_nodes_on_thread_weave.json"
قم بتحديث مسار الهيكل للإشارة إلى ملف حالة الهيكل المخصص:
self.topology_file = "~/my_topology.json"
بدلاً من ذلك ، ضع ملف حالة الهيكل المخصص في نفس الموقع مثل تلك المضمنة في OpenWeave:
self.topology_file = os.path.dirname(os.path.realpath(__file__)) + \ "/../../../topologies/standalone/my_topology.json"