WIP: Leave alert_notification and outbind unanswered #20

Closed
lilleman wants to merge 1 commits from answer-response-less into main
4 changed files with 25 additions and 6 deletions
Showing only changes of commit f4bb1e542f - Show all commits
+2
View File
@@ -32,6 +32,8 @@
a caller that reads only `smsIds` meets a failure it has not met before. A whole number in an
address or an id still spells its digits, so `message_id: 123` is unchanged. The integer fields
name a refused `NaN` too, where the refusal used to read `null`.
- An inbound `alert_notification` or `outbind` is left unanswered, as SMPP 3.4 defines no response
to either. Each used to raise `sessionError`.
## 0.5.0
+4
View File
@@ -115,6 +115,10 @@ export class IncomingRequests {
private async route(pduObj: PduObject): Promise<void> {
switch (pduObj.cmdName) {
case 'alert_notification':
case 'outbind':
this.log.info('session - command with no response, left unanswered', { cmdName: pduObj.cmdName });
break;
case 'data_sm':
case 'deliver_sm':
// A data_sm at the SMSC end is a submission, and a submission is never a report.
+19
View File
@@ -1792,6 +1792,25 @@ describe('a PDU the codec cannot read', () => {
assert.ok((await raceWithin(2000, failed)) instanceof Error, 'one sessionError per refused PDU');
});
test('leaves alert_notification and outbind unanswered, as SMPP 3.4 defines no response to either', async t => {
const { peer, session } = await bound(t);
const failed = once<Error>(resolve => { session.on('sessionError', resolve); });
peer.writeRaw(pduBytes({
cmdName: 'alert_notification',
params: { esme_addr: '46701234567', source_addr: '46709876543' },
seqNr: 21,
}));
peer.writeRaw(pduBytes({ cmdName: 'outbind', params: { password: 'secret', system_id: 'smsc' }, seqNr: 22 }));
peer.writeRaw(pduBytes({ cmdName: 'enquire_link', seqNr: 23 }));
const answered = await answerTo(peer);
assert.equal(answered.cmdName, 'enquire_link_resp');
assert.equal(answered.seqNr, 23);
assert.equal(await raceWithin(200, failed), false, 'neither is a session error');
});
test('answers a deliver_sm with a truncated TLV stream with ESME_RINVTLVSTREAM', async t => {
const { peer, session } = await bound(t);
let reports = 0;
-6
View File
@@ -200,12 +200,6 @@ and is also what the panel ranked hardest — two methods, one answer.
caller never wrote." A goal is the maintainer's, so nothing edits README until that is
answered. From the prose pass of #18.
- [ ] **Answer `alert_notification` and `outbind` by not answering them.** Both are response-less in
SMPP 3.4, both fall through `route()`'s default into `unhandled()`, which calls
`sendReturn(pduObj, 'ESME_RINVCMDID')`; `pduReturn()` then finds no response command, and the
failure reaches the application as `sessionError` on every occurrence. `alert_notification`
appears nowhere in `src/` but `defs/commands.ts`. One case arm each: log and return.
- [ ] **Range-check `maxOctets` with its five siblings.** `limitsOf()` in `session-options.ts`
covers `idleTimeout`, `maxOutstanding`, `maxReassembly`, `reassemblyTimeout`, `responseTimeout`
and `shutdownTimeout`; `maxOctets` is documented, consumed by `Reassembler`, and absent from