Increase TimerC value for TFM tests to 40 seconds

This commit is contained in:
Ivan Ribakov
2022-01-28 12:16:17 +01:00
parent 2369967646
commit 9ede2d8757
2 changed files with 5 additions and 5 deletions

View File

@@ -48,7 +48,7 @@ TfmProxyConfig::TfmProxyConfig(AbstractDb* db, const CommandLineParser& args)
insertConfigValue("QValueMsBetweenForkGroups", "5000");
insertConfigValue("QValueMsBeforeCancel", "5000");
insertConfigValue("TimerC", "30");
insertConfigValue("TimerC", "40");
insertConfigValue("ForceRecordRouting", "true");
//insertConfigValue("RecordRouteUri", "sip:127.0.0.1:5060"); // Set below per transport

View File

@@ -3494,7 +3494,7 @@ class TestHolder : public ReproFixture
optional(jason->expect(INVITE/100, from(proxy),WaitFor100,jason->noAction())),
derek->expect(INVITE,contact(jason),WaitForResponse,derek->ring()),
jason->expect(INVITE/180,contact(derek),WaitForResponse,jason->noAction()),
derek->expect(CANCEL,from(proxy),31000,chain(derek->ok(),derek->send487())),
derek->expect(CANCEL,from(proxy),41000,chain(derek->ok(),derek->send487())),
And
(
Sub
@@ -10434,14 +10434,14 @@ class TestHolder : public ReproFixture
(
jason2->expect(INVITE, contact(derek), WaitForCommand, jason2->ring()),
derek->expect(INVITE/180, from(jason2), WaitFor180, derek->noAction()),
jason2->expect(CANCEL,from(proxy),31000,chain(jason2->ok(), jason2->send487(),count487.dec())),
jason2->expect(CANCEL,from(proxy),41000,chain(jason2->ok(), jason2->send487(),count487.dec())),
jason2->expect(ACK,from(proxy),WaitForResponse,jason2->noAction())
),
Sub
(
jason1->expect(INVITE, contact(derek), WaitForCommand, jason1->ring()),
derek->expect(INVITE/180, from(jason1), WaitFor180, derek->noAction()),
jason1->expect(CANCEL,from(proxy),31000,chain(jason1->ok(), jason1->send487(),count487.dec())),
jason1->expect(CANCEL,from(proxy),41000,chain(jason1->ok(), jason1->send487(),count487.dec())),
jason1->expect(ACK,from(proxy),WaitForResponse,jason1->noAction())
)
),
@@ -10500,7 +10500,7 @@ class TestHolder : public ReproFixture
(
jason->expect(INVITE, from(cullen), WaitForCommand, jason->ring()),
cullen->expect(INVITE/180, from(jason), WaitForResponse, cullen->noAction()),
jason->expect(CANCEL, from(proxy), 31000, chain(jason->ok(), jason->send487())),
jason->expect(CANCEL, from(proxy), 41000, chain(jason->ok(), jason->send487())),
jason->expect(ACK,from(proxy),WaitForResponse,jason->noAction()),
derek->expect(INVITE, from(cullen), WaitForCommand, chain(derek->ring(),derek->ok())),