Files
golib/socket/server/unix/unix_test.go
Nicolas JUHEL 61a73ba606 Package Certificates:
- fix bug with cert type marshall/unmarshall
- add old config to allow retro compatibility
- add new type function to retrieve a tls root ca cert instead of a slice of string to get root ca

Package HTTPCli:
- fix default DNS Mapper
- optimze global DNS Mapper
- fix non closing sub goroutine

Package HTTPCli/DNS-Mapper:
- change request function of Root CA with function of root ca cert instance
- add function to return a root ca cert from a function that return a slice of root ca string

Package Config/Components:
- httpcli: bump sub package of certificate, httpcli
- httpcli: adjust code following bump
- httpcli: change request function of Root CA with function of root ca cert instance
- httpcli: add function to return a root ca cert from a function that return a slice of root ca string
- tls: change request function of Root CA with function of root ca cert instance
- tls: add function to return a root ca cert from a function that return a slice of root ca string

Package IOUtils/mapCloser:
- fix bug with mapcloser not stopped
- optimize code & goroutine

Package Logger:
- rework mapCloser call
- optimize mapClaoser managment

Package Request:
- rework error managment
- using []byte instead of buffer to read response body
- add free capability
- optimize memory consumption

Package Socket / Server:
- add filtering error capability
- add params to specify a function called on each new connection and before using the connection
- the new function param allow to update the network incomming connection (like buffer, deadline...)
- rework some useless atomic to direct value to optimize code

Package Socket/Delim:
- rework to optimize memory & variable use
- remove capabilities of update the instance when running, prefert recreate new one if necessary

Other:
- bump dependencies
- minor bug / fix
2025-01-14 15:01:54 +01:00

307 lines
8.1 KiB
Go

/*
* MIT License
*
* Copyright (c) 2023 Nicolas JUHEL
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*
*/
package unix_test
import (
"errors"
"io"
"net"
"os"
"time"
libptc "github.com/nabbar/golib/network/protocol"
libsiz "github.com/nabbar/golib/size"
libsck "github.com/nabbar/golib/socket"
sckcfg "github.com/nabbar/golib/socket/config"
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)
var (
adr = getUnixFileTemp()
siz = 10 * libsiz.SizeKilo
msg []byte
res []byte
)
func getUnixFileTemp() string {
if h, e := os.CreateTemp(os.TempDir(), "golib_sck_*.sock"); e != nil {
panic(e)
} else {
f := h.Name()
_ = h.Close()
_ = os.Remove(f)
return f
}
}
func Handler(request libsck.Reader, response libsck.Writer) {
defer func() {
_ = request.Close()
_ = response.Close()
}()
_, _ = io.Copy(response, request)
}
func ExpectedErr(e error) {
Expect(e).ToNot(HaveOccurred())
}
func ExpectedInfo(local, remote net.Addr, state libsck.ConnState) {
Expect(local).ToNot(BeEmpty())
Expect(local.Network()).To(BeEquivalentTo(libptc.NetworkUnix.String()))
Expect(local.String()).ToNot(BeEmpty())
Expect(remote).ToNot(BeEmpty())
Expect(remote.Network()).To(BeEquivalentTo(libptc.NetworkUnix.String()))
Expect(remote.String()).ToNot(BeEmpty())
Expect(state).ToNot(BeEmpty())
Expect(state.String()).ToNot(BeEmpty())
}
func ExpectedInfoSrv(msg string) {
Expect(msg).ToNot(BeEmpty())
}
var _ = Describe("socket/server/unix", func() {
Context("listen a unix socket with client who's closing connection", func() {
var (
err error
nbr int
sck libsck.Server
clt libsck.Client
srv *sckcfg.ServerConfig
cli *sckcfg.ClientConfig
)
defer func() {
if _, e := os.Stat(adr); e == nil {
_ = os.Remove(adr)
}
}()
It("Create new server config must succeed", func() {
srv = &sckcfg.ServerConfig{
Network: libptc.NetworkUnix,
Address: adr,
PermFile: 0777,
GroupPerm: -1,
}
Expect(srv).ToNot(BeNil())
})
It("Create new client config must succeed", func() {
cli = &sckcfg.ClientConfig{
Network: libptc.NetworkUnix,
Address: adr,
}
Expect(cli).ToNot(BeNil())
})
It("Create new server based on config must succeed", func() {
sck, err = srv.New(nil, Handler)
Expect(err).ToNot(HaveOccurred())
Expect(sck).ToNot(BeNil())
})
It("Create new client based on config must succeed", func() {
clt, err = cli.New()
Expect(err).ToNot(HaveOccurred())
Expect(clt).ToNot(BeNil())
})
It("Listening in a goroutine must succeed", func() {
go func() {
defer GinkgoRecover()
e := sck.Listen(ctx)
Expect(e).ToNot(HaveOccurred())
}()
time.Sleep(5 * time.Second)
Expect(sck.IsRunning()).To(BeTrue())
})
It("Socket must be having no open connections", func() {
time.Sleep(100 * time.Millisecond) // Adding delay for better testing synchronization
Expect(sck.OpenConnections()).To(BeEquivalentTo(0))
})
It("Connecting the client to the socket must succeed", func() {
Expect(clt.Connect(ctx)).ToNot(HaveOccurred())
Expect(clt.IsConnected()).To(BeTrue())
})
It("Socket must be having open connections", func() {
time.Sleep(100 * time.Millisecond) // Adding delay for better testing synchronization
Expect(sck.OpenConnections()).To(BeEquivalentTo(1))
})
It("Writing on the client must succeed", func() {
msg = append([]byte("Hello World"), libsck.EOL)
nbr, err = clt.Write(msg)
Expect(err).ToNot(HaveOccurred())
Expect(nbr).To(BeEquivalentTo(len(msg)))
})
It("Reading from the client must succeed", func() {
res = make([]byte, len(msg)*2)
nbr, err = clt.Read(res)
Expect(err).ToNot(HaveOccurred())
Expect(nbr).To(BeEquivalentTo(len(msg)))
Expect(res[:nbr]).To(BeEquivalentTo(msg))
})
It("Closing the client must succeed", func() {
Expect(clt.Close()).ToNot(HaveOccurred())
Expect(clt.IsConnected()).To(BeFalse())
})
It("Socket must not having any opened connections", func() {
time.Sleep(10 * time.Second) // Adding delay for better testing synchronization
Expect(sck.OpenConnections()).To(BeEquivalentTo(0))
})
It("Closing the socket must succeed", func() {
Expect(sck.Shutdown(ctx)).ToNot(HaveOccurred())
})
})
Context("listen a unix socket with client who's not closing connection", func() {
var (
err error
nbr int
sck libsck.Server
clt libsck.Client
srv *sckcfg.ServerConfig
cli *sckcfg.ClientConfig
)
defer func() {
if _, e := os.Stat(adr); e == nil {
_ = os.Remove(adr)
}
}()
It("Create new server config must succeed", func() {
srv = &sckcfg.ServerConfig{
Network: libptc.NetworkUnix,
Address: adr,
PermFile: 0777,
GroupPerm: -1,
}
Expect(srv).ToNot(BeNil())
})
It("Create new client config must succeed", func() {
cli = &sckcfg.ClientConfig{
Network: libptc.NetworkUnix,
Address: adr,
}
Expect(cli).ToNot(BeNil())
})
It("Create new server based on config must succeed", func() {
sck, err = srv.New(nil, Handler)
Expect(err).ToNot(HaveOccurred())
Expect(sck).ToNot(BeNil())
})
It("Create new client based on config must succeed", func() {
clt, err = cli.New()
Expect(err).ToNot(HaveOccurred())
Expect(clt).ToNot(BeNil())
})
It("Listening in a goroutine must succeed", func() {
go func() {
defer GinkgoRecover()
e := sck.Listen(ctx)
Expect(e).ToNot(HaveOccurred())
}()
time.Sleep(5 * time.Second)
Expect(sck.IsRunning()).To(BeTrue())
})
It("Socket must be having no open connections", func() {
time.Sleep(100 * time.Millisecond) // Adding delay for better testing synchronization
Expect(sck.OpenConnections()).To(BeEquivalentTo(0))
})
It("Connecting the client to the socket must succeed", func() {
Expect(clt.Connect(ctx)).ToNot(HaveOccurred())
Expect(clt.IsConnected()).To(BeTrue())
})
It("Socket must be having open connections", func() {
time.Sleep(100 * time.Millisecond) // Adding delay for better testing synchronization
Expect(sck.OpenConnections()).To(BeEquivalentTo(1))
})
It("Writing on the client must succeed", func() {
msg = append([]byte("Hello World"), libsck.EOL)
nbr, err = clt.Write(msg)
Expect(err).ToNot(HaveOccurred())
Expect(nbr).To(BeEquivalentTo(len(msg)))
})
It("Reading from the client must succeed", func() {
res = make([]byte, len(msg)*2)
nbr, err = clt.Read(res)
Expect(err).ToNot(HaveOccurred())
Expect(nbr).To(BeEquivalentTo(len(msg)))
Expect(res[:nbr]).To(BeEquivalentTo(msg))
})
It("Closing the socket must succeed", func() {
Expect(sck.Shutdown(ctx)).ToNot(HaveOccurred())
})
It("Socket must not having any opened connections", func() {
time.Sleep(10 * time.Second) // Adding delay for better testing synchronization
Expect(sck.OpenConnections()).To(BeEquivalentTo(0))
})
It("Reading from the client must succeed", func() {
res = make([]byte, len(msg)*2)
nbr, err = clt.Read(res)
if errors.Is(err, io.EOF) {
err = clt.Close()
}
Expect(err).NotTo(HaveOccurred())
Expect(nbr).To(BeEquivalentTo(0))
})
It("Client must has been not connected", func() {
Expect(clt.IsConnected()).To(BeFalse())
})
})
})