Skip to content

Commit

Permalink
refactor(mlablocate*): move from i/e/internal to internal (ooni#385)
Browse files Browse the repository at this point in the history
We've been flattening the package structure for some time now.

While there, add very basic examples.
  • Loading branch information
bassosimone committed Jun 15, 2021
1 parent 5a118a7 commit b96e9ac
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 2 deletions.
2 changes: 1 addition & 1 deletion internal/engine/experiment/dash/locate.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ import (
"context"
"net/http"

"github.com/ooni/probe-cli/v3/internal/engine/internal/mlablocate"
"github.com/ooni/probe-cli/v3/internal/engine/model"
"github.com/ooni/probe-cli/v3/internal/mlablocate"
)

type locateDeps interface {
Expand Down
2 changes: 1 addition & 1 deletion internal/engine/experiment/ndt7/ndt7.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ import (
"net/http"
"time"

"github.com/ooni/probe-cli/v3/internal/engine/internal/mlablocatev2"
"github.com/ooni/probe-cli/v3/internal/engine/model"
"github.com/ooni/probe-cli/v3/internal/engine/netx"
"github.com/ooni/probe-cli/v3/internal/humanize"
"github.com/ooni/probe-cli/v3/internal/mlablocatev2"
)

const (
Expand Down
19 changes: 19 additions & 0 deletions internal/mlablocate/example_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package mlablocate_test

import (
"context"
"fmt"
"net/http"

"github.com/apex/log"
"github.com/ooni/probe-cli/v3/internal/mlablocate"
)

func Example_usage() {
clnt := mlablocate.NewClient(http.DefaultClient, log.Log, "miniooni/0.1.0-dev")
result, err := clnt.Query(context.Background(), "neubot/dash")
if err != nil {
log.WithError(err).Fatal("clnt.Query failed")
}
fmt.Printf("%s\n", result.FQDN)
}
File renamed without changes.
File renamed without changes.
19 changes: 19 additions & 0 deletions internal/mlablocatev2/example_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package mlablocatev2_test

import (
"context"
"fmt"
"net/http"

"github.com/apex/log"
"github.com/ooni/probe-cli/v3/internal/mlablocatev2"
)

func Example_usage() {
clnt := mlablocatev2.NewClient(http.DefaultClient, log.Log, "miniooni/0.1.0-dev")
results, err := clnt.QueryNDT7(context.Background())
if err != nil {
log.WithError(err).Fatal("clnt.QueryNDT7 failed")
}
fmt.Printf("%+v\n", results)
}
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit b96e9ac

Please sign in to comment.