mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 11:29:48 +08:00
93 lines
2.3 KiB
Go
93 lines
2.3 KiB
Go
package ios
|
|
|
|
import (
|
|
"os"
|
|
"os/signal"
|
|
"strings"
|
|
"syscall"
|
|
"time"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/httprunner/httprunner/v4/hrp/internal/builtin"
|
|
"github.com/httprunner/httprunner/v4/hrp/internal/env"
|
|
"github.com/httprunner/httprunner/v4/hrp/internal/sdk"
|
|
"github.com/httprunner/httprunner/v4/hrp/pkg/uixt"
|
|
)
|
|
|
|
var pcapCmd = &cobra.Command{
|
|
Use: "pcap",
|
|
Short: "capture ios network packets",
|
|
RunE: func(cmd *cobra.Command, args []string) (err error) {
|
|
startTime := time.Now()
|
|
defer func() {
|
|
sdk.SendGA4Event("hrp_ios_pcap", map[string]interface{}{
|
|
"args": strings.Join(args, "-"),
|
|
"success": err == nil,
|
|
"engagement_time_msec": time.Since(startTime).Milliseconds(),
|
|
})
|
|
}()
|
|
|
|
pcapOptions := []uixt.IOSPcapOption{}
|
|
if pid > 0 {
|
|
pcapOptions = append(pcapOptions, uixt.WithIOSPcapPID(pid))
|
|
}
|
|
if procName != "" {
|
|
pcapOptions = append(pcapOptions, uixt.WithIOSPcapProcName(procName))
|
|
}
|
|
if bundleID != "" {
|
|
pcapOptions = append(pcapOptions, uixt.WithIOSPcapBundleID(bundleID))
|
|
}
|
|
if len(pcapOptions) == 0 {
|
|
pcapOptions = append(pcapOptions, uixt.WithIOSPcapAll(true))
|
|
}
|
|
|
|
device, err := uixt.NewIOSDevice(
|
|
uixt.WithUDID(udid),
|
|
uixt.WithIOSPcapOptions(pcapOptions...),
|
|
)
|
|
if err != nil {
|
|
log.Fatal().Err(err).Msg("failed to init ios device")
|
|
}
|
|
|
|
err = builtin.EnsureFolderExists(env.ResultsPath)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if err = device.StartPcap(); err != nil {
|
|
return err
|
|
}
|
|
defer device.StopPcap()
|
|
|
|
c := make(chan os.Signal, 1)
|
|
signal.Notify(c, syscall.SIGTERM, syscall.SIGINT)
|
|
timer := time.NewTimer(time.Duration(timeDuration) * time.Second)
|
|
for {
|
|
select {
|
|
case <-timer.C:
|
|
return nil
|
|
case <-c:
|
|
log.Warn().Msg("received signal, stop pcap")
|
|
return nil
|
|
}
|
|
}
|
|
},
|
|
}
|
|
|
|
var (
|
|
timeDuration int
|
|
pid int
|
|
procName string
|
|
)
|
|
|
|
func init() {
|
|
pcapCmd.Flags().StringVarP(&udid, "udid", "u", "", "specify device by udid")
|
|
pcapCmd.Flags().IntVarP(&pid, "pid", "p", 0, "specify process ID")
|
|
pcapCmd.Flags().StringVarP(&procName, "procName", "n", "", "specify process name")
|
|
pcapCmd.Flags().StringVarP(&bundleID, "bundleID", "b", "", "specify bundle ID")
|
|
pcapCmd.Flags().IntVarP(&timeDuration, "duration", "t", 10, "specify time duraion in seconds")
|
|
iosRootCmd.AddCommand(pcapCmd)
|
|
}
|