Compare commits
1 Commits
main
...
test-in-do
Author | SHA1 | Date | |
---|---|---|---|
972a147fb9 |
|
@ -41,15 +41,13 @@ let fetchPost (postId : string) =
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
### A standard way to translate JSON or a URI into a strongly-typed configuration
|
### A standard way to translate JSON into a strongly-typed configuration
|
||||||
|
|
||||||
```fsharp
|
```fsharp
|
||||||
/// type: DataConfig
|
/// type: DataConfig
|
||||||
let config = DataConfig.fromJsonFile "data-config.json"
|
let config = DataConfig.fromJsonFile "data-config.json"
|
||||||
// OR
|
// OR
|
||||||
let config = DataConfig.fromConfiguration (config.GetSection "RethinkDB")
|
let config = DataConfig.fromConfiguration (config.GetSection "RethinkDB")
|
||||||
// OR
|
|
||||||
let config = DataConfig.fromUri (config.GetConnectionString "RethinkDB")
|
|
||||||
|
|
||||||
/// type: IConnection
|
/// type: IConnection
|
||||||
let conn = config.Connect ()
|
let conn = config.Connect ()
|
||||||
|
|
25
src/.dockerignore
Normal file
25
src/.dockerignore
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
**/.dockerignore
|
||||||
|
**/.env
|
||||||
|
**/.git
|
||||||
|
**/.gitignore
|
||||||
|
**/.project
|
||||||
|
**/.settings
|
||||||
|
**/.toolstarget
|
||||||
|
**/.vs
|
||||||
|
**/.vscode
|
||||||
|
**/.idea
|
||||||
|
**/*.*proj.user
|
||||||
|
**/*.dbmdl
|
||||||
|
**/*.jfm
|
||||||
|
**/azds.yaml
|
||||||
|
**/bin
|
||||||
|
**/charts
|
||||||
|
**/docker-compose*
|
||||||
|
**/Dockerfile*
|
||||||
|
**/node_modules
|
||||||
|
**/npm-debug.log
|
||||||
|
**/obj
|
||||||
|
**/secrets.dev.yaml
|
||||||
|
**/values.dev.yaml
|
||||||
|
LICENSE
|
||||||
|
README.md
|
23
src/Dockerfile
Normal file
23
src/Dockerfile
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
FROM mcr.microsoft.com/dotnet/runtime:6.0 AS base
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
|
||||||
|
WORKDIR /src
|
||||||
|
COPY ["RethinkDb.Driver.FSharp.Tests/RethinkDb.Driver.FSharp.Tests.fsproj", "RethinkDb.Driver.FSharp.Tests/"]
|
||||||
|
RUN dotnet restore "RethinkDb.Driver.FSharp.Tests/RethinkDb.Driver.FSharp.Tests.fsproj"
|
||||||
|
COPY . .
|
||||||
|
WORKDIR "/src/RethinkDb.Driver.FSharp.Tests"
|
||||||
|
RUN dotnet build "RethinkDb.Driver.FSharp.Tests.fsproj" -c Release -o /app/build
|
||||||
|
|
||||||
|
FROM build AS publish
|
||||||
|
RUN dotnet publish "RethinkDb.Driver.FSharp.Tests.fsproj" -c Release -r linux-x64 --self-contained true -o /app/publish
|
||||||
|
|
||||||
|
FROM rethinkdb:latest AS test
|
||||||
|
WORKDIR /app
|
||||||
|
COPY --from=publish /app/publish .
|
||||||
|
ENTRYPOINT ["RethinkDb.Driver.FSharp.Tests"]
|
||||||
|
|
||||||
|
# FROM base AS final
|
||||||
|
# WORKDIR /app
|
||||||
|
# COPY --from=publish /app/publish .
|
||||||
|
# ENTRYPOINT ["dotnet", "RethinkDb.Driver.FSharp.Tests.dll"]
|
1
src/RethinkDb.Driver.FSharp.Tests/Program.fs
Normal file
1
src/RethinkDb.Driver.FSharp.Tests/Program.fs
Normal file
|
@ -0,0 +1 @@
|
||||||
|
module Program = let [<EntryPoint>] main _ = 0
|
|
@ -0,0 +1,39 @@
|
||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net6.0</TargetFramework>
|
||||||
|
|
||||||
|
<IsPackable>false</IsPackable>
|
||||||
|
<GenerateProgramFile>false</GenerateProgramFile>
|
||||||
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Types.fs" />
|
||||||
|
<Compile Include="Tests.fs" />
|
||||||
|
<Compile Include="Program.fs" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
|
||||||
|
<PackageReference Include="xunit" Version="2.4.1" />
|
||||||
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
</PackageReference>
|
||||||
|
<PackageReference Include="coverlet.collector" Version="3.1.0">
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
</PackageReference>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Content Include=".dockerignore" />
|
||||||
|
<Content Include="Dockerfile" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\RethinkDb.Driver.FSharp\RethinkDb.Driver.FSharp.fsproj" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
17
src/RethinkDb.Driver.FSharp.Tests/Tests.fs
Normal file
17
src/RethinkDb.Driver.FSharp.Tests/Tests.fs
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
module Tests
|
||||||
|
|
||||||
|
open System
|
||||||
|
open RethinkDb.Driver
|
||||||
|
open RethinkDb.Driver.FSharp.Functions
|
||||||
|
open Types
|
||||||
|
open Xunit
|
||||||
|
|
||||||
|
let private r = RethinkDB.R
|
||||||
|
|
||||||
|
[<Fact>]
|
||||||
|
let ``My test`` () =
|
||||||
|
Assert.True(true)
|
||||||
|
|
||||||
|
let ``dbCreate succeeds`` () =
|
||||||
|
dbCreate "fsharp_driver_test"
|
||||||
|
|> runWrite
|
16
src/RethinkDb.Driver.FSharp.Tests/Types.fs
Normal file
16
src/RethinkDb.Driver.FSharp.Tests/Types.fs
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
module Types
|
||||||
|
|
||||||
|
/// A simple type to use for testing
|
||||||
|
type BasicType =
|
||||||
|
{ // The ID for this record
|
||||||
|
id : string
|
||||||
|
|
||||||
|
/// A field with a boolean value
|
||||||
|
boolField : bool
|
||||||
|
|
||||||
|
/// A field with an integer value
|
||||||
|
intField : int
|
||||||
|
|
||||||
|
/// A field with a string value
|
||||||
|
stringField : string
|
||||||
|
}
|
|
@ -4,6 +4,8 @@ VisualStudioVersion = 17.1.32228.430
|
||||||
MinimumVisualStudioVersion = 15.0.26124.0
|
MinimumVisualStudioVersion = 15.0.26124.0
|
||||||
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "RethinkDb.Driver.FSharp", "RethinkDb.Driver.FSharp\RethinkDb.Driver.FSharp.fsproj", "{9026E009-55DC-454E-87B7-39B9CBAD8BF8}"
|
Project("{6EC3EE1D-3C4E-46DD-8F32-0CC8E7565705}") = "RethinkDb.Driver.FSharp", "RethinkDb.Driver.FSharp\RethinkDb.Driver.FSharp.fsproj", "{9026E009-55DC-454E-87B7-39B9CBAD8BF8}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "RethinkDb.Driver.FSharp.Tests", "RethinkDb.Driver.FSharp.Tests\RethinkDb.Driver.FSharp.Tests.fsproj", "{FC062B8C-81D5-4E0A-B3BA-A84541298BDB}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
@ -26,6 +28,18 @@ Global
|
||||||
{9026E009-55DC-454E-87B7-39B9CBAD8BF8}.Release|x64.Build.0 = Release|Any CPU
|
{9026E009-55DC-454E-87B7-39B9CBAD8BF8}.Release|x64.Build.0 = Release|Any CPU
|
||||||
{9026E009-55DC-454E-87B7-39B9CBAD8BF8}.Release|x86.ActiveCfg = Release|Any CPU
|
{9026E009-55DC-454E-87B7-39B9CBAD8BF8}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
{9026E009-55DC-454E-87B7-39B9CBAD8BF8}.Release|x86.Build.0 = Release|Any CPU
|
{9026E009-55DC-454E-87B7-39B9CBAD8BF8}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
{FC062B8C-81D5-4E0A-B3BA-A84541298BDB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{FC062B8C-81D5-4E0A-B3BA-A84541298BDB}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{FC062B8C-81D5-4E0A-B3BA-A84541298BDB}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||||
|
{FC062B8C-81D5-4E0A-B3BA-A84541298BDB}.Debug|x64.Build.0 = Debug|Any CPU
|
||||||
|
{FC062B8C-81D5-4E0A-B3BA-A84541298BDB}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{FC062B8C-81D5-4E0A-B3BA-A84541298BDB}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
|
{FC062B8C-81D5-4E0A-B3BA-A84541298BDB}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{FC062B8C-81D5-4E0A-B3BA-A84541298BDB}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{FC062B8C-81D5-4E0A-B3BA-A84541298BDB}.Release|x64.ActiveCfg = Release|Any CPU
|
||||||
|
{FC062B8C-81D5-4E0A-B3BA-A84541298BDB}.Release|x64.Build.0 = Release|Any CPU
|
||||||
|
{FC062B8C-81D5-4E0A-B3BA-A84541298BDB}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{FC062B8C-81D5-4E0A-B3BA-A84541298BDB}.Release|x86.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
namespace RethinkDb.Driver.FSharp
|
namespace RethinkDb.Driver.FSharp
|
||||||
|
|
||||||
open System
|
|
||||||
open Microsoft.Extensions.Configuration
|
open Microsoft.Extensions.Configuration
|
||||||
open Microsoft.Extensions.Logging
|
|
||||||
open Newtonsoft.Json.Linq
|
open Newtonsoft.Json.Linq
|
||||||
open RethinkDb.Driver
|
open RethinkDb.Driver
|
||||||
open RethinkDb.Driver.Net
|
open RethinkDb.Driver.Net
|
||||||
|
@ -38,30 +36,17 @@ type DataConfig =
|
||||||
static member empty =
|
static member empty =
|
||||||
{ Parameters = [] }
|
{ Parameters = [] }
|
||||||
|
|
||||||
/// Build the connection from the given parameters
|
|
||||||
member private this.BuildConnection () =
|
|
||||||
this.Parameters
|
|
||||||
|> Seq.fold ConnectionBuilder.build (RethinkDB.R.Connection ())
|
|
||||||
|
|
||||||
/// Create a RethinkDB connection
|
/// Create a RethinkDB connection
|
||||||
member this.CreateConnection () : IConnection =
|
member this.CreateConnection () : IConnection =
|
||||||
(this.BuildConnection ()).Connect ()
|
this.Parameters
|
||||||
|
|> Seq.fold ConnectionBuilder.build (RethinkDB.R.Connection ())
|
||||||
/// Create a RethinkDB connection, logging the connection settings
|
|> function builder -> builder.Connect ()
|
||||||
member this.CreateConnection (log : ILogger) : IConnection =
|
|
||||||
let builder = this.BuildConnection ()
|
|
||||||
if not (isNull log) then log.LogInformation $"Connecting to {this.EffectiveUri}"
|
|
||||||
builder.Connect ()
|
|
||||||
|
|
||||||
/// Create a RethinkDB connection
|
/// Create a RethinkDB connection
|
||||||
member this.CreateConnectionAsync () : Task<Connection> =
|
member this.CreateConnectionAsync () : Task<Connection> =
|
||||||
(this.BuildConnection ()).ConnectAsync ()
|
this.Parameters
|
||||||
|
|> Seq.fold ConnectionBuilder.build (RethinkDB.R.Connection ())
|
||||||
/// Create a RethinkDB connection, logging the connection settings
|
|> function builder -> builder.ConnectAsync ()
|
||||||
member this.CreateConnectionAsync (log : ILogger) : Task<Connection> =
|
|
||||||
let builder = this.BuildConnection ()
|
|
||||||
if not (isNull log) then log.LogInformation $"Connecting to {this.EffectiveUri}"
|
|
||||||
builder.ConnectAsync ()
|
|
||||||
|
|
||||||
/// The effective hostname
|
/// The effective hostname
|
||||||
member this.Hostname =
|
member this.Hostname =
|
||||||
|
@ -87,20 +72,6 @@ type DataConfig =
|
||||||
| Some (Database x) -> x
|
| Some (Database x) -> x
|
||||||
| _ -> RethinkDBConstants.DefaultDbName
|
| _ -> RethinkDBConstants.DefaultDbName
|
||||||
|
|
||||||
/// The effective configuration URI (excludes password / auth key)
|
|
||||||
member this.EffectiveUri =
|
|
||||||
seq {
|
|
||||||
"rethinkdb://"
|
|
||||||
match this.Parameters |> List.tryPick (fun x -> match x with User _ -> Some x | _ -> None) with
|
|
||||||
| Some (User (username, _)) -> $"{username}:***pw***@"
|
|
||||||
| _ ->
|
|
||||||
match this.Parameters |> List.tryPick (fun x -> match x with AuthKey _ -> Some x | _ -> None) with
|
|
||||||
| Some (AuthKey _) -> "****key****@"
|
|
||||||
| _ -> ()
|
|
||||||
$"{this.Hostname}:{this.Port}/{this.Database}?timeout={this.Timeout}"
|
|
||||||
}
|
|
||||||
|> String.concat ""
|
|
||||||
|
|
||||||
/// Parse settings from JSON
|
/// Parse settings from JSON
|
||||||
///
|
///
|
||||||
/// A sample JSON object with all the possible properties filled in:
|
/// A sample JSON object with all the possible properties filled in:
|
||||||
|
@ -145,26 +116,3 @@ type DataConfig =
|
||||||
match cfg["username"], cfg["password"] with null, _ | _, null -> () | user -> User user
|
match cfg["username"], cfg["password"] with null, _ | _, null -> () | user -> User user
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parse settings from a URI
|
|
||||||
///
|
|
||||||
/// rethinkdb://user:password@host:port/database?timeout=##
|
|
||||||
/// OR
|
|
||||||
/// rethinkdb://authkey@host:port/database?timeout=##
|
|
||||||
///
|
|
||||||
/// Scheme and host are required; all other settings optional
|
|
||||||
static member FromUri (uri : string) =
|
|
||||||
let it = Uri uri
|
|
||||||
if it.Scheme <> "rethinkdb" then invalidArg "Scheme" $"""URI scheme must be "rethinkdb" (was {it.Scheme})"""
|
|
||||||
{ Parameters =
|
|
||||||
[ Hostname it.Host
|
|
||||||
if it.Port <> -1 then Port it.Port
|
|
||||||
if it.UserInfo <> "" then
|
|
||||||
if it.UserInfo.Contains ":" then
|
|
||||||
let parts = it.UserInfo.Split ':' |> Array.truncate 2
|
|
||||||
User (parts[0], parts[1])
|
|
||||||
else AuthKey it.UserInfo
|
|
||||||
if it.Segments.Length > 1 then Database it.Segments[1]
|
|
||||||
if it.Query.Contains "?timeout=" then Timeout (int it.Query[9..])
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -10,8 +10,6 @@ open RethinkDb.Driver.FSharp
|
||||||
let dataCfg = DataConfig.fromJson "rethink-config.json"
|
let dataCfg = DataConfig.fromJson "rethink-config.json"
|
||||||
// - or -
|
// - or -
|
||||||
let dataCfg = DataConfig.fromConfiguration [config-section]
|
let dataCfg = DataConfig.fromConfiguration [config-section]
|
||||||
// - or -
|
|
||||||
let dataCfg = DataConfig.fromUri [connection-string]
|
|
||||||
|
|
||||||
let conn = dataCfg.CreateConnection () // IConnection
|
let conn = dataCfg.CreateConnection () // IConnection
|
||||||
```
|
```
|
||||||
|
|
|
@ -14,9 +14,9 @@
|
||||||
<Copyright>See LICENSE</Copyright>
|
<Copyright>See LICENSE</Copyright>
|
||||||
<PackageTags>RethinkDB document F#</PackageTags>
|
<PackageTags>RethinkDB document F#</PackageTags>
|
||||||
<VersionPrefix>0.9.0</VersionPrefix>
|
<VersionPrefix>0.9.0</VersionPrefix>
|
||||||
<VersionSuffix>beta-07</VersionSuffix>
|
<VersionSuffix>beta-06</VersionSuffix>
|
||||||
<PackageReleaseNotes>
|
<PackageReleaseNotes>
|
||||||
Add URI config option and logging CreateConnection overloads
|
Add optional arguments for tableCreate
|
||||||
</PackageReleaseNotes>
|
</PackageReleaseNotes>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user