Skip to content

Commit

Permalink
feat(flags): Fetch flags and team from database (#23120)
Browse files Browse the repository at this point in the history
Co-authored-by: Dylan Martin <[email protected]>
Co-authored-by: James Greenhill <[email protected]>
  • Loading branch information
3 people authored Jul 24, 2024
1 parent a44a4e3 commit 50adf3b
Show file tree
Hide file tree
Showing 19 changed files with 914 additions and 110 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-plugin-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- 'plugin-server/**'
- 'posthog/clickhouse/migrations/**'
- 'ee/migrations/**'
- 'ee/management/commands/setup_test_environment.py'
- 'posthog/management/commands/setup_test_environment.py'
- 'posthog/migrations/**'
- 'posthog/plugins/**'
- 'docker*.yml'
Expand Down
62 changes: 59 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
- '.github/workflows/rust.yml'
- '.github/workflows/rust-docker-build.yml'
- '.github/workflows/rust-hook-migrator-docker.yml'
- 'posthog/management/commands/setup_test_environment.py'
- 'posthog/migrations/**'
- 'ee/migrations/**'
build:
name: Build rust services
Expand Down Expand Up @@ -73,6 +76,11 @@ jobs:

test:
name: Test rust services
strategy:
matrix:
package:
- feature-flags
- others
needs: changes
runs-on: depot-ubuntu-22.04-4
timeout-minutes: 10
Expand All @@ -86,11 +94,15 @@ jobs:
# Use sparse checkout to only select files in rust directory
# Turning off cone mode ensures that files in the project root are not included during checkout
- uses: actions/checkout@v3
if: needs.changes.outputs.rust == 'true'
if: needs.changes.outputs.rust == 'true' && matrix.package == 'others'
with:
sparse-checkout: 'rust/'
sparse-checkout-cone-mode: false

# For flags checkout entire repository
- uses: actions/checkout@v3
if: needs.changes.outputs.rust == 'true' && matrix.package == 'feature-flags'

- name: Login to DockerHub
if: needs.changes.outputs.rust == 'true'
uses: docker/login-action@v2
Expand All @@ -99,8 +111,15 @@ jobs:
username: posthog
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Setup main repo dependencies for flags
if: needs.changes.outputs.rust == 'true' && matrix.package == 'feature-flags'
run: |
docker compose -f ../docker-compose.dev.yml down
docker compose -f ../docker-compose.dev.yml up -d
echo "127.0.0.1 kafka" | sudo tee -a /etc/hosts
- name: Setup dependencies
if: needs.changes.outputs.rust == 'true'
if: needs.changes.outputs.rust == 'true' && matrix.package == 'others'
run: |
docker compose up kafka redis db echo_server -d --wait
docker compose up setup_test_db
Expand All @@ -119,9 +138,46 @@ jobs:
rust/target
key: ${ runner.os }-cargo-debug-${{ hashFiles('**/Cargo.lock') }}

- name: Set up Python
if: needs.changes.outputs.rust == 'true' && matrix.package == 'feature-flags'
uses: actions/setup-python@v5
with:
python-version: 3.11.9
cache: 'pip'
cache-dependency-path: '**/requirements*.txt'
token: ${{ secrets.POSTHOG_BOT_GITHUB_TOKEN }}

# uv is a fast pip alternative: https://github.com/astral-sh/uv/
- run: pip install uv
if: needs.changes.outputs.rust == 'true' && matrix.package == 'feature-flags'

- name: Install SAML (python3-saml) dependencies
if: needs.changes.outputs.rust == 'true' && matrix.package == 'feature-flags'
run: |
sudo apt-get update
sudo apt-get install libxml2-dev libxmlsec1-dev libxmlsec1-openssl
- name: Install python dependencies
if: needs.changes.outputs.rust == 'true' && matrix.package == 'feature-flags'
run: |
uv pip install --system -r ../requirements-dev.txt
uv pip install --system -r ../requirements.txt
- name: Set up databases
if: needs.changes.outputs.rust == 'true' && matrix.package == 'feature-flags'
env:
DEBUG: 'true'
TEST: 'true'
SECRET_KEY: 'abcdef' # unsafe - for testing only
DATABASE_URL: 'postgres://posthog:posthog@localhost:5432/posthog'
run: cd ../ && python manage.py setup_test_environment --only-postgres

- name: Run cargo test
if: needs.changes.outputs.rust == 'true'
run: cargo test --all-features
run: |
echo "Starting cargo test"
cargo test --all-features ${{ matrix.package == 'feature-flags' && '--package feature-flags' || '--workspace --exclude feature-flags' }}
echo "Cargo test completed"
linting:
name: Lint rust services
Expand Down
10 changes: 10 additions & 0 deletions posthog/management/commands/setup_test_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
class Command(BaseCommand):
help = "Set up databases for non-Python tests that depend on the Django server"

# has optional arg to only run postgres setup
def add_arguments(self, parser):
parser.add_argument(
"--only-postgres", action="store_true", help="Only set up the Postgres database", default=False
)

def handle(self, *args, **options):
if not TEST:
raise ValueError("TEST environment variable needs to be set for this command to function")
Expand All @@ -36,6 +42,10 @@ def handle(self, *args, **options):
test_runner.setup_databases()
test_runner.setup_test_environment()

if options["only_postgres"]:
print("Only setting up Postgres database") # noqa: T201
return

print("\nCreating test ClickHouse database...") # noqa: T201
database = Database(
CLICKHOUSE_DATABASE,
Expand Down
2 changes: 2 additions & 0 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion rust/feature-flags/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ tokio = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
bytes = { workspace = true }
once_cell = "1.18.0"
rand = { workspace = true }
redis = { version = "0.23.3", features = [
"tokio-comp",
Expand All @@ -27,12 +28,13 @@ thiserror = { workspace = true }
serde-pickle = { version = "1.1.1"}
sha1 = "0.10.6"
regex = "1.10.4"
sqlx = { workspace = true }
uuid = { workspace = true }

[lints]
workspace = true

[dev-dependencies]
assert-json-diff = { workspace = true }
once_cell = "1.18.0"
reqwest = { workspace = true }

17 changes: 17 additions & 0 deletions rust/feature-flags/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,23 @@

# Testing

First, make sure docker compose is running (from main posthog repo), and test database exists:

```
docker compose -f ../docker-compose.dev.yml up -d
```

```
TEST=1 python manage.py setup_test_environment --only-postgres
```

We only need to run the above once, when the test database is created.

TODO: Would be nice to make the above automatic.


Then, run the tests:

```
cargo test --package feature-flags
```
Expand Down
60 changes: 57 additions & 3 deletions rust/feature-flags/src/api.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ use axum::response::{IntoResponse, Response};
use serde::{Deserialize, Serialize};
use thiserror::Error;

use crate::database::CustomDatabaseError;
use crate::redis::CustomRedisError;

#[derive(Debug, PartialEq, Eq, Deserialize, Serialize)]
pub enum FlagsResponseCode {
Ok = 1,
Expand Down Expand Up @@ -42,6 +45,14 @@ pub enum FlagError {
DataParsingError,
#[error("redis unavailable")]
RedisUnavailable,
#[error("database unavailable")]
DatabaseUnavailable,
#[error("Timed out while fetching data")]
TimeoutError,
// TODO: Consider splitting top-level errors (that are returned to the client)
// and FlagMatchingError, like timeouterror which we can gracefully handle.
// This will make the `into_response` a lot clearer as well, since it wouldn't
// have arbitrary errors that actually never make it to the client.
}

impl IntoResponse for FlagError {
Expand All @@ -58,10 +69,53 @@ impl IntoResponse for FlagError {

FlagError::RateLimited => (StatusCode::TOO_MANY_REQUESTS, self.to_string()),

FlagError::DataParsingError | FlagError::RedisUnavailable => {
(StatusCode::SERVICE_UNAVAILABLE, self.to_string())
}
FlagError::DataParsingError
| FlagError::RedisUnavailable
| FlagError::DatabaseUnavailable
| FlagError::TimeoutError => (StatusCode::SERVICE_UNAVAILABLE, self.to_string()),
}
.into_response()
}
}

impl From<CustomRedisError> for FlagError {
fn from(e: CustomRedisError) -> Self {
match e {
CustomRedisError::NotFound => FlagError::TokenValidationError,
CustomRedisError::PickleError(e) => {
tracing::error!("failed to fetch data: {}", e);
FlagError::DataParsingError
}
CustomRedisError::Timeout(_) => FlagError::TimeoutError,
CustomRedisError::Other(e) => {
tracing::error!("Unknown redis error: {}", e);
FlagError::RedisUnavailable
}
}
}
}

impl From<CustomDatabaseError> for FlagError {
fn from(e: CustomDatabaseError) -> Self {
match e {
CustomDatabaseError::NotFound => FlagError::TokenValidationError,
CustomDatabaseError::Other(_) => {
tracing::error!("failed to get connection: {}", e);
FlagError::DatabaseUnavailable
}
CustomDatabaseError::Timeout(_) => FlagError::TimeoutError,
}
}
}

impl From<sqlx::Error> for FlagError {
fn from(e: sqlx::Error) -> Self {
// TODO: Be more precise with error handling here
tracing::error!("sqlx error: {}", e);
println!("sqlx error: {}", e);
match e {
sqlx::Error::RowNotFound => FlagError::TokenValidationError,
_ => FlagError::DatabaseUnavailable,
}
}
}
90 changes: 85 additions & 5 deletions rust/feature-flags/src/config.rs
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
use std::net::SocketAddr;

use envconfig::Envconfig;
use once_cell::sync::Lazy;
use std::net::SocketAddr;
use std::str::FromStr;

#[derive(Envconfig, Clone)]
#[derive(Envconfig, Clone, Debug)]
pub struct Config {
#[envconfig(default = "127.0.0.1:3001")]
pub address: SocketAddr,

#[envconfig(default = "postgres://posthog:posthog@localhost:15432/test_database")]
#[envconfig(default = "postgres://posthog:posthog@localhost:5432/test_posthog")]
pub write_database_url: String,

#[envconfig(default = "postgres://posthog:posthog@localhost:15432/test_database")]
#[envconfig(default = "postgres://posthog:posthog@localhost:5432/test_posthog")]
pub read_database_url: String,

#[envconfig(default = "1024")]
Expand All @@ -21,4 +22,83 @@ pub struct Config {

#[envconfig(default = "redis://localhost:6379/")]
pub redis_url: String,

#[envconfig(default = "1")]
pub acquire_timeout_secs: u64,
}

impl Config {
pub fn default_test_config() -> Self {
Self {
address: SocketAddr::from_str("127.0.0.1:0").unwrap(),
redis_url: "redis://localhost:6379/".to_string(),
write_database_url: "postgres://posthog:posthog@localhost:5432/test_posthog"
.to_string(),
read_database_url: "postgres://posthog:posthog@localhost:5432/test_posthog".to_string(),
max_concurrent_jobs: 1024,
max_pg_connections: 100,
acquire_timeout_secs: 1,
}
}
}

pub static DEFAULT_TEST_CONFIG: Lazy<Config> = Lazy::new(Config::default_test_config);

#[cfg(test)]
mod tests {
use super::*;

#[test]
fn test_default_config() {
let config = Config::init_from_env().unwrap();
assert_eq!(
config.address,
SocketAddr::from_str("127.0.0.1:3001").unwrap()
);
assert_eq!(
config.write_database_url,
"postgres://posthog:posthog@localhost:5432/test_posthog"
);
assert_eq!(
config.read_database_url,
"postgres://posthog:posthog@localhost:5432/test_posthog"
);
assert_eq!(config.max_concurrent_jobs, 1024);
assert_eq!(config.max_pg_connections, 100);
assert_eq!(config.redis_url, "redis://localhost:6379/");
}

#[test]
fn test_default_test_config() {
let config = Config::default_test_config();
assert_eq!(config.address, SocketAddr::from_str("127.0.0.1:0").unwrap());
assert_eq!(
config.write_database_url,
"postgres://posthog:posthog@localhost:5432/test_posthog"
);
assert_eq!(
config.read_database_url,
"postgres://posthog:posthog@localhost:5432/test_posthog"
);
assert_eq!(config.max_concurrent_jobs, 1024);
assert_eq!(config.max_pg_connections, 100);
assert_eq!(config.redis_url, "redis://localhost:6379/");
}

#[test]
fn test_default_test_config_static() {
let config = &*DEFAULT_TEST_CONFIG;
assert_eq!(config.address, SocketAddr::from_str("127.0.0.1:0").unwrap());
assert_eq!(
config.write_database_url,
"postgres://posthog:posthog@localhost:5432/test_posthog"
);
assert_eq!(
config.read_database_url,
"postgres://posthog:posthog@localhost:5432/test_posthog"
);
assert_eq!(config.max_concurrent_jobs, 1024);
assert_eq!(config.max_pg_connections, 100);
assert_eq!(config.redis_url, "redis://localhost:6379/");
}
}
Loading

0 comments on commit 50adf3b

Please sign in to comment.