GitHub पर स्रोत देखें |
OpenWeave में सिम्युलेटेड हैप्पी टोपोलॉजीज पर वेव फंक्शनलिटी के परीक्षण के लिए कई पायथन स्क्रिप्ट शामिल हैं। ये परीक्षण मामले सुनिश्चित करते हैं कि टोपोलॉजी नेटवर्क कनेक्टिविटी और वीव परिनियोजन के लिए ठीक से कॉन्फ़िगर किया गया है।
टेस्ट मामले स्क्रिप्ट पर OpenWeave भंडार में पाए जाते हैं /src/test-apps/happy/tests
। दो प्रकार के परीक्षण हैं:
- सेवा - टेस्ट है कि एक सेवा के साथ इंटरफेस
- स्टैंडअलोन - टेस्ट स्थानीय टोपोलोजी पर चलने वाले
Daud
- ओपनवेव स्थापित करें। OpenWeave देखें बिल्ड निर्देश के लिए गाइड।
- हैप्पी स्थापित करें। मुबारक देखें सेटअप निर्देश के लिए गाइड।
- लक्ष्य परीक्षण मामले वाली निर्देशिका पर नेविगेट करें। उदाहरण के लिए, एक इको प्रोफ़ाइल परीक्षण का मामला चलाने के लिए:
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"