2023-01-06 12:21:14 +00:00
|
|
|
package pairing
|
2022-06-10 15:32:15 +00:00
|
|
|
|
|
|
|
import (
|
2022-08-07 22:14:33 +00:00
|
|
|
"crypto/ecdsa"
|
2022-08-19 12:45:50 +00:00
|
|
|
"crypto/rand"
|
2023-01-06 12:21:14 +00:00
|
|
|
"encoding/hex"
|
|
|
|
"io/ioutil"
|
|
|
|
"net/http"
|
2022-10-20 15:14:09 +00:00
|
|
|
"regexp"
|
2022-06-10 15:32:15 +00:00
|
|
|
"testing"
|
2023-01-06 12:21:14 +00:00
|
|
|
"time"
|
2022-06-10 15:32:15 +00:00
|
|
|
|
feat(pairing)_: Fallback pairing seed (#5614) (#5627)
* feat(pairing)!: Add extra parameters and remove v2 compatibility
This commit includes the following changes:
I have added a flag to maintain 2.29 compatibility.
Breaking change in connection string
The local pairing code that was parsing the connection string had a few non-upgradable features:
It was strictly checking the number of parameters, throwing an error if the number was different. This made it impossible to add parameters to it without breaking.
It was strictly checking the version number. This made increasing the version number impossible as older client would just refuse to connect.
The code has been changed so that:
Two parameters have been added, installation-id and key-uid. Those are needed for the fallback flow.
I have also removed version from the payload, since it wasn't used.
This means that we don't support v1 anymore. V2 parsing is supported . Going forward there's a clear strategy on how to update the protocol (append parameters, don't change existing one).
https://www.youtube.com/watch?v=oyLBGkS5ICk Is a must watch video for understanding the strategy
Changed MessengerResponse to use internally a map of installations rather than an array (minor)
Just moving towards maps as arrays tend to lead to subtle bugs.
Moved pairing methods to messenger_pairing.go
Just moved some methods
Added 2 new methods for the fallback flow
FinishPairingThroughSeedPhraseProcess
https://github.com/status-im/status-go/pull/5567/files#diff-1ad620b07fa3bd5fbc96c9f459d88829938a162bf1aaf41c61dea6e38b488d54R29
EnableAndSyncInstallation
https://github.com/status-im/status-go/pull/5567/files#diff-1ad620b07fa3bd5fbc96c9f459d88829938a162bf1aaf41c61dea6e38b488d54R18
Flow for clients
Client A1 is logged in
Client A2 is logged out
Client A1 shows a QR code
Client A2 scans a QR code
If connection fails on A2, the user will be prompted to enter a seed phrase.
If the generated account matches the key-uid from the QR code, A2 should call FinishPairingThroughSeedPhraseProcess with the installation id passed in the QR code. This will send installation information over waku. The user should be shown its own installation id and prompted to check the other device.
Client A1 will receive new installation data through waku, if they are still on the qr code page, they should show a popup to the user showing the received installation id, and a way to Enable and Sync, which should call the EnableAndSyncInstallation endpoint. This should finish the fallback syncing flow.
Current issues
Currently I haven't tested that all the data is synced after finishing the flow. I see that the two devices are paired correctly, but for example the DisplayName is not changed on the receiving device. I haven't had time to look into it further.
* test_: add more test for connection string parser
* fix_: fix panic when parse old connection string
* test_: add comments for TestMessengerPairAfterSeedPhrase
* fix_: correct error description
* feat_:rename FinishPairingThroughSeedPhraseProcess to EnableInstallationAndPair
* fix_: delete leftover
* fix_: add UniqueKey method
* fix_: unify the response for InputConnectionStringForBootstrapping
* fix_: remove fields installationID and keyUID in GethStatusBackend
* fix_: rename messenger_pairing to messenger_pairing_and_syncing
---------
Co-authored-by: frank <lovefree103@gmail.com>
Co-authored-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2024-07-30 16:03:43 +00:00
|
|
|
"github.com/google/uuid"
|
2023-01-06 12:21:14 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2022-06-10 15:32:15 +00:00
|
|
|
"github.com/stretchr/testify/suite"
|
2023-01-06 12:21:14 +00:00
|
|
|
|
|
|
|
"github.com/status-im/status-go/server"
|
2022-06-10 15:32:15 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestPairingServerSuite(t *testing.T) {
|
|
|
|
suite.Run(t, new(PairingServerSuite))
|
|
|
|
}
|
|
|
|
|
|
|
|
type PairingServerSuite struct {
|
|
|
|
suite.Suite
|
|
|
|
TestPairingServerComponents
|
|
|
|
}
|
|
|
|
|
2022-10-12 10:00:14 +00:00
|
|
|
func (s *PairingServerSuite) SetupTest() {
|
2022-06-10 15:32:15 +00:00
|
|
|
s.SetupPairingServerComponents(s.T())
|
|
|
|
}
|
|
|
|
|
2022-10-20 15:14:09 +00:00
|
|
|
func (s *PairingServerSuite) TestMultiBackgroundForeground() {
|
2023-03-23 11:44:15 +00:00
|
|
|
err := s.SS.Start()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.SS.ToBackground()
|
|
|
|
s.SS.ToForeground()
|
|
|
|
s.SS.ToBackground()
|
|
|
|
s.SS.ToBackground()
|
|
|
|
s.SS.ToForeground()
|
|
|
|
s.SS.ToForeground()
|
|
|
|
s.Require().Regexp(regexp.MustCompile("(https://\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}:\\d{1,5})"), s.SS.MakeBaseURL().String()) // nolint: gosimple
|
2022-10-20 15:14:09 +00:00
|
|
|
}
|
|
|
|
|
2023-02-15 15:50:30 +00:00
|
|
|
func (s *PairingServerSuite) TestMultiTimeout() {
|
2023-03-23 11:44:15 +00:00
|
|
|
s.SS.SetTimeout(20)
|
2023-02-15 15:50:30 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
err := s.SS.Start()
|
2023-02-15 15:50:30 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
s.SS.ToBackground()
|
|
|
|
s.SS.ToForeground()
|
|
|
|
s.SS.ToBackground()
|
|
|
|
s.SS.ToBackground()
|
|
|
|
s.SS.ToForeground()
|
|
|
|
s.SS.ToForeground()
|
2023-02-15 15:50:30 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
s.Require().Regexp(regexp.MustCompile("(https://\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}:\\d{1,5})"), s.SS.MakeBaseURL().String()) // nolint: gosimple
|
2023-02-15 15:50:30 +00:00
|
|
|
|
|
|
|
time.Sleep(7 * time.Millisecond)
|
2023-03-23 11:44:15 +00:00
|
|
|
s.SS.ToBackground()
|
2023-02-15 15:50:30 +00:00
|
|
|
time.Sleep(7 * time.Millisecond)
|
2023-03-23 11:44:15 +00:00
|
|
|
s.SS.ToForeground()
|
2023-02-15 15:50:30 +00:00
|
|
|
time.Sleep(7 * time.Millisecond)
|
2023-03-23 11:44:15 +00:00
|
|
|
s.SS.ToBackground()
|
2023-02-15 15:50:30 +00:00
|
|
|
time.Sleep(7 * time.Millisecond)
|
2023-03-23 11:44:15 +00:00
|
|
|
s.SS.ToBackground()
|
2023-02-15 15:50:30 +00:00
|
|
|
time.Sleep(7 * time.Millisecond)
|
2023-03-23 11:44:15 +00:00
|
|
|
s.SS.ToForeground()
|
2023-02-15 15:50:30 +00:00
|
|
|
time.Sleep(7 * time.Millisecond)
|
2023-03-23 11:44:15 +00:00
|
|
|
s.SS.ToForeground()
|
2023-02-15 15:50:30 +00:00
|
|
|
|
|
|
|
// Wait for timeout to expire
|
|
|
|
time.Sleep(40 * time.Millisecond)
|
2023-03-23 11:44:15 +00:00
|
|
|
s.Require().False(s.SS.IsRunning())
|
2023-02-15 15:50:30 +00:00
|
|
|
}
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// TestPairingServer_StartPairingSend tests that a Server can send data to a ReceiverClient
|
|
|
|
func (s *PairingServerSuite) TestPairingServer_StartPairingSend() {
|
|
|
|
// Replace PairingServer.accountMounter with a MockPayloadMounter
|
|
|
|
pm := NewMockPayloadMounter(s.EphemeralAES)
|
|
|
|
s.SS.accountMounter = pm
|
2023-02-17 13:02:42 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
err := s.SS.startSendingData()
|
2022-07-01 15:37:53 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
cp, err := s.SS.MakeConnectionParams()
|
|
|
|
s.Require().NoError(err)
|
2022-06-10 15:32:15 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
qr := cp.ToString()
|
2022-06-10 15:32:15 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// Client reads QR code and parses the connection string
|
|
|
|
ccp := new(ConnectionParams)
|
|
|
|
err = ccp.FromString(qr)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
c, err := NewReceiverClient(nil, ccp, NewReceiverClientConfig())
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Compare cert values
|
|
|
|
cert := c.serverCert
|
|
|
|
cl := s.SS.GetCert().Leaf
|
|
|
|
s.Require().Equal(cl.Signature, cert.Signature)
|
|
|
|
s.Require().Zero(cl.PublicKey.(*ecdsa.PublicKey).X.Cmp(cert.PublicKey.(*ecdsa.PublicKey).X))
|
|
|
|
s.Require().Zero(cl.PublicKey.(*ecdsa.PublicKey).Y.Cmp(cert.PublicKey.(*ecdsa.PublicKey).Y))
|
|
|
|
s.Require().Equal(cl.Version, cert.Version)
|
|
|
|
s.Require().Zero(cl.SerialNumber.Cmp(cert.SerialNumber))
|
|
|
|
s.Require().Exactly(cl.NotBefore, cert.NotBefore)
|
|
|
|
s.Require().Exactly(cl.NotAfter, cert.NotAfter)
|
|
|
|
s.Require().Exactly(cl.IPAddresses, cert.IPAddresses)
|
|
|
|
|
|
|
|
// Replace ReceivingClient.accountReceiver with a MockPayloadReceiver
|
|
|
|
c.accountReceiver = NewMockPayloadReceiver(s.EphemeralAES)
|
|
|
|
|
|
|
|
err = c.getChallenge()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
err = c.receiveAccountData()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
s.Require().Equal(c.accountReceiver.Received(), s.SS.accountMounter.(*MockPayloadMounter).encryptor.payload.plain)
|
|
|
|
s.Require().Equal(c.accountReceiver.(*MockPayloadReceiver).encryptor.payload.encrypted, s.SS.accountMounter.(*MockPayloadMounter).encryptor.payload.encrypted)
|
2022-06-10 15:32:15 +00:00
|
|
|
}
|
2022-08-19 12:45:50 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
// TestPairingServer_StartPairingReceive tests that a Server can receive data to a SenderClient
|
|
|
|
func (s *PairingServerSuite) TestPairingServer_StartPairingReceive() {
|
2022-08-19 12:45:50 +00:00
|
|
|
// Replace PairingServer.PayloadManager with a MockEncryptOnlyPayloadManager
|
2023-03-23 11:44:15 +00:00
|
|
|
pm := NewMockPayloadReceiver(s.EphemeralAES)
|
|
|
|
s.RS.accountReceiver = pm
|
|
|
|
|
|
|
|
err := s.RS.startReceivingData()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
cp, err := s.RS.MakeConnectionParams()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
qr := cp.ToString()
|
|
|
|
|
|
|
|
// Client reads QR code and parses the connection string
|
|
|
|
ccp := new(ConnectionParams)
|
|
|
|
err = ccp.FromString(qr)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
c, err := NewSenderClient(nil, ccp, &SenderClientConfig{SenderConfig: &SenderConfig{}, ClientConfig: &ClientConfig{}})
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Compare cert values
|
|
|
|
cert := c.serverCert
|
|
|
|
cl := s.RS.GetCert().Leaf
|
|
|
|
s.Require().Equal(cl.Signature, cert.Signature)
|
|
|
|
s.Require().Zero(cl.PublicKey.(*ecdsa.PublicKey).X.Cmp(cert.PublicKey.(*ecdsa.PublicKey).X))
|
|
|
|
s.Require().Zero(cl.PublicKey.(*ecdsa.PublicKey).Y.Cmp(cert.PublicKey.(*ecdsa.PublicKey).Y))
|
|
|
|
s.Require().Equal(cl.Version, cert.Version)
|
|
|
|
s.Require().Zero(cl.SerialNumber.Cmp(cert.SerialNumber))
|
|
|
|
s.Require().Exactly(cl.NotBefore, cert.NotBefore)
|
|
|
|
s.Require().Exactly(cl.NotAfter, cert.NotAfter)
|
|
|
|
s.Require().Exactly(cl.IPAddresses, cert.IPAddresses)
|
|
|
|
|
|
|
|
// Replace SendingClient.accountMounter with a MockPayloadMounter
|
|
|
|
c.accountMounter = NewMockPayloadMounter(s.EphemeralAES)
|
2022-08-19 12:45:50 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
err = c.sendAccountData()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
s.Require().Equal(c.accountMounter.(*MockPayloadMounter).encryptor.payload.plain, s.RS.accountReceiver.Received())
|
|
|
|
s.Require().Equal(s.RS.accountReceiver.(*MockPayloadReceiver).encryptor.getEncrypted(), c.accountMounter.(*MockPayloadMounter).encryptor.payload.encrypted)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *PairingServerSuite) sendingSetup() *ReceiverClient {
|
|
|
|
// Replace PairingServer.PayloadManager with a MockPayloadReceiver
|
|
|
|
pm := NewMockPayloadMounter(s.EphemeralAES)
|
|
|
|
s.SS.accountMounter = pm
|
|
|
|
|
|
|
|
err := s.SS.startSendingData()
|
2022-08-19 12:45:50 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
cp, err := s.SS.MakeConnectionParams()
|
2022-08-19 12:45:50 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
qr := cp.ToString()
|
|
|
|
|
|
|
|
// Client reads QR code and parses the connection string
|
|
|
|
ccp := new(ConnectionParams)
|
|
|
|
err = ccp.FromString(qr)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
c, err := NewReceiverClient(nil, ccp, NewReceiverClientConfig())
|
2022-08-19 12:45:50 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Replace PairingClient.PayloadManager with a MockEncryptOnlyPayloadManager
|
2023-03-23 11:44:15 +00:00
|
|
|
c.accountReceiver = NewMockPayloadReceiver(s.EphemeralAES)
|
2022-08-19 12:45:50 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *PairingServerSuite) TestPairingServer_handlePairingChallengeMiddleware() {
|
|
|
|
c := s.sendingSetup()
|
|
|
|
|
|
|
|
// Attempt to get the private key data, this should fail because there is no challenge
|
|
|
|
err := c.receiveAccountData()
|
|
|
|
s.Require().Error(err)
|
2023-02-28 12:32:45 +00:00
|
|
|
s.Require().Equal("[client] status not ok when receiving account data, received '403 Forbidden'", err.Error())
|
2022-08-19 12:45:50 +00:00
|
|
|
|
|
|
|
err = c.getChallenge()
|
|
|
|
s.Require().NoError(err)
|
2023-03-20 18:39:28 +00:00
|
|
|
challenge := c.challengeTaker.serverChallenge
|
2022-08-19 12:45:50 +00:00
|
|
|
|
|
|
|
// This is NOT a mistake! Call c.getChallenge() twice to check that the client gets the same challenge
|
2023-03-20 18:39:28 +00:00
|
|
|
// the server will only generate 1 challenge until the challenge is successfully completed
|
2022-08-19 12:45:50 +00:00
|
|
|
err = c.getChallenge()
|
|
|
|
s.Require().NoError(err)
|
2023-03-20 18:39:28 +00:00
|
|
|
s.Require().Equal(challenge, c.challengeTaker.serverChallenge)
|
2022-08-19 12:45:50 +00:00
|
|
|
|
|
|
|
// receiving account data should now work.
|
|
|
|
err = c.receiveAccountData()
|
|
|
|
s.Require().NoError(err)
|
2023-03-20 18:39:28 +00:00
|
|
|
|
|
|
|
// After a successful challenge the challenge should change
|
|
|
|
err = c.getChallenge()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().NotEqual(challenge, c.challengeTaker.serverChallenge)
|
2023-03-20 20:16:38 +00:00
|
|
|
|
|
|
|
// Unlock the MockPayloadMounter to allow the test. Don't do this ordinarily
|
|
|
|
s.SS.accountMounter.(*MockPayloadMounter).encryptor.payload.locked = false
|
|
|
|
|
|
|
|
// receiving account data again using the new challenge
|
|
|
|
err = c.receiveAccountData()
|
|
|
|
s.Require().NoError(err)
|
2022-08-19 12:45:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *PairingServerSuite) TestPairingServer_handlePairingChallengeMiddleware_block() {
|
|
|
|
c := s.sendingSetup()
|
|
|
|
|
|
|
|
// Attempt to get the private key data, this should fail because there is no challenge
|
|
|
|
err := c.receiveAccountData()
|
|
|
|
s.Require().Error(err)
|
2023-02-28 12:32:45 +00:00
|
|
|
s.Require().Equal("[client] status not ok when receiving account data, received '403 Forbidden'", err.Error())
|
2022-08-19 12:45:50 +00:00
|
|
|
|
|
|
|
// Get the challenge
|
|
|
|
err = c.getChallenge()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Simulate encrypting with a dodgy key, write some nonsense to the challenge field
|
2023-03-20 18:39:28 +00:00
|
|
|
c.challengeTaker.serverChallenge = make([]byte, 64)
|
|
|
|
_, err = rand.Read(c.challengeTaker.serverChallenge)
|
2022-08-19 12:45:50 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Attempt again to get the account data, should fail
|
|
|
|
// behind the scenes the server will block the session if the client fails the challenge. There is no forgiveness!
|
|
|
|
err = c.receiveAccountData()
|
|
|
|
s.Require().Error(err)
|
2023-02-28 12:32:45 +00:00
|
|
|
s.Require().Equal("[client] status not ok when receiving account data, received '403 Forbidden'", err.Error())
|
2022-08-19 12:45:50 +00:00
|
|
|
|
|
|
|
// Get the real challenge
|
|
|
|
err = c.getChallenge()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Attempt to get the account data, should fail because the client is now blocked.
|
|
|
|
err = c.receiveAccountData()
|
|
|
|
s.Require().Error(err)
|
2023-02-28 12:32:45 +00:00
|
|
|
s.Require().Equal("[client] status not ok when receiving account data, received '403 Forbidden'", err.Error())
|
2022-08-19 12:45:50 +00:00
|
|
|
}
|
2023-01-06 12:21:14 +00:00
|
|
|
|
|
|
|
func testHandler(t *testing.T) func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
say, ok := r.URL.Query()["say"]
|
|
|
|
if !ok || len(say) == 0 {
|
|
|
|
say = append(say, "nothing")
|
|
|
|
}
|
|
|
|
|
2024-01-18 18:54:54 +00:00
|
|
|
_, err := w.Write([]byte("Hello I like to be a tls server. You said: `" + say[0] + "` " + time.Now().String()))
|
2023-01-06 12:21:14 +00:00
|
|
|
if err != nil {
|
|
|
|
require.NoError(t, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func makeThingToSay() (string, error) {
|
|
|
|
b := make([]byte, 32)
|
|
|
|
_, err := rand.Read(b)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
|
|
|
|
return hex.EncodeToString(b), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *PairingServerSuite) TestGetOutboundIPWithFullServerE2e() {
|
2023-03-23 11:44:15 +00:00
|
|
|
s.SS.SetHandlers(server.HandlerPatternMap{"/hello": testHandler(s.T())})
|
2023-01-06 12:21:14 +00:00
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
err := s.SS.Start()
|
2023-01-06 12:21:14 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Give time for the sever to be ready, hacky I know, I'll iron this out
|
|
|
|
time.Sleep(100 * time.Millisecond)
|
|
|
|
|
|
|
|
// Server generates a QR code connection string
|
2023-03-23 11:44:15 +00:00
|
|
|
cp, err := s.SS.MakeConnectionParams()
|
2023-01-06 12:21:14 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
qr := cp.ToString()
|
|
|
|
|
|
|
|
// Client reads QR code and parses the connection string
|
|
|
|
ccp := new(ConnectionParams)
|
|
|
|
err = ccp.FromString(qr)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
2023-03-23 11:44:15 +00:00
|
|
|
c, err := NewReceiverClient(nil, ccp, NewReceiverClientConfig())
|
2023-01-06 12:21:14 +00:00
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
thing, err := makeThingToSay()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
response, err := c.Get(c.baseAddress.String() + "/hello?say=" + thing)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
defer response.Body.Close()
|
|
|
|
|
|
|
|
content, err := ioutil.ReadAll(response.Body)
|
|
|
|
s.Require().NoError(err)
|
2024-01-18 18:54:54 +00:00
|
|
|
s.Require().Equal("Hello I like to be a tls server. You said: `"+thing+"`", string(content[:109]))
|
2023-01-06 12:21:14 +00:00
|
|
|
}
|
feat(pairing)_: Fallback pairing seed (#5614) (#5627)
* feat(pairing)!: Add extra parameters and remove v2 compatibility
This commit includes the following changes:
I have added a flag to maintain 2.29 compatibility.
Breaking change in connection string
The local pairing code that was parsing the connection string had a few non-upgradable features:
It was strictly checking the number of parameters, throwing an error if the number was different. This made it impossible to add parameters to it without breaking.
It was strictly checking the version number. This made increasing the version number impossible as older client would just refuse to connect.
The code has been changed so that:
Two parameters have been added, installation-id and key-uid. Those are needed for the fallback flow.
I have also removed version from the payload, since it wasn't used.
This means that we don't support v1 anymore. V2 parsing is supported . Going forward there's a clear strategy on how to update the protocol (append parameters, don't change existing one).
https://www.youtube.com/watch?v=oyLBGkS5ICk Is a must watch video for understanding the strategy
Changed MessengerResponse to use internally a map of installations rather than an array (minor)
Just moving towards maps as arrays tend to lead to subtle bugs.
Moved pairing methods to messenger_pairing.go
Just moved some methods
Added 2 new methods for the fallback flow
FinishPairingThroughSeedPhraseProcess
https://github.com/status-im/status-go/pull/5567/files#diff-1ad620b07fa3bd5fbc96c9f459d88829938a162bf1aaf41c61dea6e38b488d54R29
EnableAndSyncInstallation
https://github.com/status-im/status-go/pull/5567/files#diff-1ad620b07fa3bd5fbc96c9f459d88829938a162bf1aaf41c61dea6e38b488d54R18
Flow for clients
Client A1 is logged in
Client A2 is logged out
Client A1 shows a QR code
Client A2 scans a QR code
If connection fails on A2, the user will be prompted to enter a seed phrase.
If the generated account matches the key-uid from the QR code, A2 should call FinishPairingThroughSeedPhraseProcess with the installation id passed in the QR code. This will send installation information over waku. The user should be shown its own installation id and prompted to check the other device.
Client A1 will receive new installation data through waku, if they are still on the qr code page, they should show a popup to the user showing the received installation id, and a way to Enable and Sync, which should call the EnableAndSyncInstallation endpoint. This should finish the fallback syncing flow.
Current issues
Currently I haven't tested that all the data is synced after finishing the flow. I see that the two devices are paired correctly, but for example the DisplayName is not changed on the receiving device. I haven't had time to look into it further.
* test_: add more test for connection string parser
* fix_: fix panic when parse old connection string
* test_: add comments for TestMessengerPairAfterSeedPhrase
* fix_: correct error description
* feat_:rename FinishPairingThroughSeedPhraseProcess to EnableInstallationAndPair
* fix_: delete leftover
* fix_: add UniqueKey method
* fix_: unify the response for InputConnectionStringForBootstrapping
* fix_: remove fields installationID and keyUID in GethStatusBackend
* fix_: rename messenger_pairing to messenger_pairing_and_syncing
---------
Co-authored-by: frank <lovefree103@gmail.com>
Co-authored-by: Andrea Maria Piana <andrea.maria.piana@gmail.com>
2024-07-30 16:03:43 +00:00
|
|
|
|
|
|
|
func (s *PairingServerSuite) TestFromStringInstallationID() {
|
|
|
|
pm := NewMockPayloadMounter(s.EphemeralAES)
|
|
|
|
s.SS.accountMounter = pm
|
|
|
|
|
|
|
|
err := s.SS.startSendingData()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Server generates a QR code connection string
|
|
|
|
cp, err := s.SS.MakeConnectionParams()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
installationID := uuid.New().String()
|
|
|
|
cp.installationID = installationID
|
|
|
|
qr := cp.ToString()
|
|
|
|
|
|
|
|
// Client reads QR code and parses the connection string
|
|
|
|
ccp := new(ConnectionParams)
|
|
|
|
err = ccp.FromString(qr)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
s.Require().Equal(installationID, ccp.installationID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *PairingServerSuite) TestFromStringForwardCompatibility() {
|
|
|
|
pm := NewMockPayloadMounter(s.EphemeralAES)
|
|
|
|
s.SS.accountMounter = pm
|
|
|
|
|
|
|
|
err := s.SS.startSendingData()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
// Server generates a QR code connection string
|
|
|
|
cp, err := s.SS.MakeConnectionParams()
|
|
|
|
s.Require().NoError(err)
|
|
|
|
|
|
|
|
installationID := uuid.New().String()
|
|
|
|
cp.installationID = installationID
|
|
|
|
qr := cp.ToString()
|
|
|
|
|
|
|
|
qr += ":for-gods-sake-this-should-not-break:anything"
|
|
|
|
|
|
|
|
// Client reads QR code and parses the connection string
|
|
|
|
ccp := new(ConnectionParams)
|
|
|
|
err = ccp.FromString(qr)
|
|
|
|
s.Require().NoError(err)
|
|
|
|
s.Require().NotEmpty(ccp.netIPs)
|
|
|
|
}
|