Florian Schmaus
32a38c4e77
[core] Check if the successor vertex exists in StateDescriptorGraph
...
If the successor's module is disabled then the vertex may be null. In
this case, we can simple continue with the next successor in the list.
Previously, due to d33a5a23c3
("[core] Introduce
Builder.failOnUnknownStates() and unit tests") this would trigger an
assert in addOutgoingEdge().
Fixes: d33a5a23c3
("[core] Introduce Builder.failOnUnknownStates() and unit tests")
12 months ago
Florian Schmaus
a0b9279441
[sinttest] Add "compatibility mode" setting
12 months ago
Dan Caseley
48c057ab10
[sinttest] Additional tests for s5 of XEP-0045
...
Modified-by: Florian Schmaus <flo@geekplace.eu>
12 months ago
Florian Schmaus
98d530819f
Merge pull request #488 from vanitasvitae/bumpPgpainless
...
OpenPGP: Bump PGPainless to 0.2.8
1 year ago
Paul Schaub
9e33fc56e1
Bump PGPainless to 0.2.8
1 year ago
Paul Schaub
9c5b0a2a16
Bump Bouncycastle to 1.69
1 year ago
Florian Schmaus
b9be45ae2c
[xdata] Fix ProtectedMembersInFinalClass Error Prone warning
1 year ago
Florian Schmaus
59d3d75a71
Merge branch '4.4'
1 year ago
Florian Schmaus
f39e433121
Merge pull request #484 from guusdk/SMACK-908_debugger-tabs_4.4-branch
...
SMACK-908: Don't use components to count tabs in Debugger
1 year ago
Florian Schmaus
d7c708b167
Merge pull request #486 from Flowdalic/4.4-form-fields-raw
...
Provide and use the raw values of form fields
1 year ago
Florian Schmaus
8f760eaeb3
[caps] Use the raw character data of form fields when caclulating the hash
...
Fixes SMACK-909.
1 year ago
Florian Schmaus
e626580f68
[xdata] Safe the raw character data of form field values
...
Related to SMACK-909.
1 year ago
Florian Schmaus
b47225c2c1
[caps] Use the raw character data of form fields when caclulating the hash
1 year ago
Florian Schmaus
097d245358
[xdata] Safe the raw character data of form field values
1 year ago
Florian Schmaus
4643d07ef4
[xdata] Add missing ensureAtMostSingleValue() to parseBooleanFormField
1 year ago
Florian Schmaus
a057db107e
[ox-im] Annotate sporadically failing assertTrue()
1 year ago
Florian Schmaus
f64288ba6d
[sinttest] Treat NPE as test failure not as abort condition
1 year ago
Guus der Kinderen
58774ad05b
SMACK-908: Don't use components to count tabs in Debugger
...
Although the amount of components in a JTabbedPane apparently is often equal to the amount of tabs in it, that need not be the case.
1 year ago
Florian Schmaus
c9af25c674
Merge pull request #483 from guusdk/SMACK-908_debugger-tabs
...
SMACK-908: Don't use components to count tabs in Debugger
1 year ago
Guus der Kinderen
0a8da1a07f
SMACK-908: Don't use components to count tabs in Debugger
...
Although the amount of components in a JTabbedPane apparently is often equal to the amount of tabs in it, that need not be the case.
1 year ago
Florian Schmaus
56507a761f
Smack 4.4.3
...
-----BEGIN PGP SIGNATURE-----
iQGTBAABCgB9FiEEl3UFnzoh3OFr5PuuIjmn6PWFIFIFAmDkTYtfFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDk3
NzUwNTlGM0EyMURDRTE2QkU0RkJBRTIyMzlBN0U4RjU4NTIwNTIACgkQIjmn6PWF
IFJ5lwf/eOMA+WdaddTsn/uQj0dq7Qhtt89Zj02bW1zIF6isYs8boGGtOqaQkcqa
Cc1hLXVg725f8UU6wTy+5MRTUG/vj8/SH/1zbrgI1oizOv0Ug+ipBy5wzM1i5Om7
1PVpy2yH9UHVXljt9ejUo+WcC/UQSy2REQ4gzm+aTox74lW/rC99NAFa98vr7uHf
YZAmEp/vAfI0mRymrYxgir/M0aeCY20Dlo2xvUZbugq7Nm6tIHbELm8g6M52XYkw
7T6VB5W/2p+IZH4itgtfuiQk4jTgkn9T6oVAZzw3kufv0DCuNN9dMtIIfJwXwOv9
jgv76LBZPzL18lhBDfxyyG0ws97O+A==
=EZ8x
-----END PGP SIGNATURE-----
Merge tag '4.4.3'
Smack 4.4.3
1 year ago
Florian Schmaus
00249f3a67
Smack 4.4.4-SNAPSHOT
1 year ago
Florian Schmaus
524e4b1d9b
Smack 4.4.3
1 year ago
Florian Schmaus
d33a5a23c3
[core] Introduce Builder.failOnUnknownStates() and unit tests
...
The previous approach of emitting a severe log message when a
state (descriptor) was unknown was misleading. There are valid cases
where some states are not known, if, for example, a module was
explicitly disabled.
Using Builder.failOnUnknownStates() in unit tests is far cleaner, as
the existence of unknown states is tested in a controlled environment:
one where are states are supposed to be known.
1 year ago
Florian Schmaus
b6c8754012
Merge branch '4.4'
1 year ago
Florian Schmaus
31e4e1faf2
Do not call XmlPullParser.getName() when the event is unknown
...
XmlPullParser.getName() only returns a result if the current parser
event is START_ELEMENT or END_ELEMENT. If this is not the case, then
the method may throw (if StAX is used).
1 year ago
Florian Schmaus
5eef31e49c
Do not call XmlPullParser.getName() when the event is unknown
...
XmlPullParser.getName() only returns a result if the current parser
event is START_ELEMENT or END_ELEMENT. If this is not the case, then
the method may throw (if StAX is used).
1 year ago
Florian Schmaus
4120b42761
[omemo] Add OmemoManager.purgeEveryting()
...
This is basically the already existing method from
OmemoManagerSetupHelper.cleanUpPubSub() moved over into OmemoManager
as purgeEverything().
1 year ago
Guus der Kinderen
5e203086b3
[sint] increase stability
...
Some roster-based tests depend on there not being any prior subscription state beteween entities. The utility method that
tries to guarantee that, acts on the state of the roster that's cached in memory, but acts on the one that's stored on the
server. This occasionally causes issues, as both representations might be different.
Stability is added in this commit by:
- refreshing the roster from the server prior to evaluating it
- ignoring an 'item-not-found' as returned by the server, when the code tries to remove that item.
1 year ago
Florian Schmaus
3fde4830e4
Merge branch '4.4'
1 year ago
Florian Schmaus
2762325639
[repl] Bump Scala to 2.13.6 and Ammonite to 2.4.0
1 year ago
Florian Schmaus
6434e77336
[sinttest] Use correct camel case in method name: s/MUC/muc/
...
See also https://google.github.io/styleguide/javaguide.html#s5.3-camel-case
1 year ago
Florian Schmaus
2e18442b11
Merge pull request #475 from Fishbowler/xep-0045-coverage-part1
...
[sinttest] Refactor MUC tests ready to add more
1 year ago
Florian Schmaus
b3e1082c09
Merge pull request #479 from Fishbowler/doc_updates
...
Various doc additions
1 year ago
Dan Caseley
e0754df043
[doc] Initial IDE config guide
1 year ago
Dan Caseley
7b3bd6ff96
[doc] Fix config example in MUC doc
1 year ago
Dan Caseley
a0b8ad98c9
[doc] Add debugging section to sinttest doc
1 year ago
Florian Schmaus
82d5ee6ac4
Merge pull request #476 from Fishbowler/doc_updates
...
[doc] Fix some wording in integrationtest.md
1 year ago
Dan Caseley
cedced5b13
[doc] Fix some wording in integrationtest.md
1 year ago
Dan Caseley
cd6ff363c6
[sinttest] Refactor MUC tests ready to add more
1 year ago
Florian Schmaus
8692c0187e
Merge pull request #474 from vanitasvitae/pgpainless_0_2_0
...
Bump PGPainless to 0.2.0
1 year ago
Paul Schaub
340ef42736
Bump PGPainless to 0.2.0
1 year ago
Florian Schmaus
899813a668
Merge pull request #467 from Flowdalic/4.4-data-forms
...
Proposed data form updates for 4.4
1 year ago
Florian Schmaus
26e6efa767
[address] Fix NPE in MultipleRecipientManager
...
The arguments 'to', 'cc, and 'bcc' may be null, hence ensure that they
are non-null when calling e.g. size() on them.
Fixes SMACK-907
Fixes: df96c57093
("[address] Get rid of PacketCopy workaround")
1 year ago
Florian Schmaus
4f2d8e8d4c
Merge pull request #473 from Flowdalic/coveralls
...
[ci] Re-enable coveralls
1 year ago
Florian Schmaus
b52e02740b
[ci] Re-enable coveralls
1 year ago
Florian Schmaus
e9ca16ed12
[websocket-java11] Add test
1 year ago
Florian Schmaus
8d74873925
Merge branch '4.4'
1 year ago
Florian Schmaus
4eb5869860
[build] Remove markdown-gradle-plugin
1 year ago
Florian Schmaus
39b211cde3
[muc] Use StanzaCollector.nextResultBlockForever() in MultiUserChat.nextMessage()
1 year ago