Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: command to create node from existing network, fix select node & pk e2e test #513

Merged

Conversation

snigdha920
Copy link
Contributor

@snigdha920 snigdha920 commented Dec 20, 2024

Summary by Sourcery

Add support for creating blockchain nodes from the CLI. Update the select node and private key E2E test to reflect the new node creation options.

New Features:

  • Add a command to create a new Besu blockchain node.

Tests:

  • Update E2E tests to include node selection and private key selection during smart contract set deployment.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.
Copy link

linear bot commented Dec 20, 2024

Copy link
Contributor

sourcery-ai bot commented Dec 20, 2024

Reviewer's Guide by Sourcery

This pull request introduces a new command that allows users to create a blockchain node from an existing network. It also includes updates to the select node and private key end-to-end tests to reflect the new functionality and changes to the graph middleware create command to no longer require a storage ID.

Sequence diagram for creating a blockchain node from existing network

Loading
sequenceDiagram
    actor User
    participant CLI
    participant SettleMint
    participant Network

    User->>CLI: Execute create blockchain-node command
    alt No application specified
        CLI-->>User: Request application ID
    end
    alt No network specified
        CLI->>SettleMint: Get available networks
        SettleMint-->>CLI: Return networks list
        CLI-->>User: Prompt to select network
    end
    User->>CLI: Provide node configuration
    CLI->>SettleMint: Create blockchain node
    SettleMint->>Network: Add node to network
    Network-->>SettleMint: Confirm node creation
    SettleMint-->>CLI: Return node details
    CLI-->>User: Display success and update env

Class diagram for the new blockchain node creation commands

Loading
classDiagram
    class Command {
        +alias(string)
        +description(string)
        +addCommand(Command)
        +option(string, string)
        +action(function)
    }

    class BlockchainNodeCreateCommand {
        +alias: 'bn'
        +description: string
    }

    class BlockchainNodeBesuCreateCommand {
        +name: 'besu'
        +alias: 'b'
        +execute(cmd, baseAction)
        -blockchainNetworkPrompt()
    }

    Command <|-- BlockchainNodeCreateCommand
    BlockchainNodeCreateCommand o-- BlockchainNodeBesuCreateCommand

    note for BlockchainNodeBesuCreateCommand "New command for creating
Besu blockchain nodes
from existing networks"

File-Level Changes

Change Details Files
Added a new command to create a blockchain node from an existing network.
  • Added blockchainNodeCreateCommand to the platform create command.
  • Added a new command blockchain-node with the alias bn.
  • Implemented the blockchainNodeBesuCreateCommand function to handle the creation of a Besu node.
  • Added tests for the new command.
sdk/cli/src/commands/platform/create.ts
sdk/cli/src/commands/platform/blockchain-node/create.ts
sdk/cli/src/commands/platform/blockchain-node/besu/create.ts
sdk/cli/src/commands/platform/blockchain-node/besu/create.test.ts
Modified the select node and private key end-to-end tests.
  • Added setup for two additional nodes: one with an activated private key and one without.
  • Updated the node selection prompt in the tests to include the new nodes.
  • Added constants for the new nodes and private key.
test/scripts/setup-platform-resources.ts
test/create-smart-contract-set.e2e.test.ts
test/constants/test-resources.ts
Updated the graph middleware create command.
  • Removed the storage ID requirement when creating a graph middleware.
sdk/cli/src/commands/platform/middleware/graph/create.ts
Modified the blockchain network create command alias.
  • Changed the alias of the blockchain-network command from bn to bnw.
sdk/cli/src/commands/platform/blockchain-network/create.ts
Modified the create command to use the instance from the environment variables if available.
  • Use the SETTLEMINT_INSTANCE environment variable if available, otherwise prompt the user for the instance.
sdk/cli/src/commands/platform/common/create-command.ts
Skipped the subgraph deploy test.
  • Added the skip directive to the subgraph - Deploy subgraphs test.
test/create-new-project.e2e.test.ts
Added a restart command for blockchain nodes.
  • Implemented the blockchainNodeRestartCommand function to handle restarting a blockchain node.
sdk/cli/src/commands/platform/blockchain-node/restart.ts
Added a prompt for selecting a blockchain network.
  • Implemented the blockchainNetworkPrompt function to prompt the user for a blockchain network selection.
sdk/cli/src/commands/connect/blockchain-network.prompt.ts

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time. You can also use
    this command to specify where the summary should be inserted.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.
…-existing-network

* main:
  chore(deps): update dependency @arethetypeswrong/cli to v0.17.2 (#511)
  chore(deps): update dependency lefthook to v1.10.0 (#512)
  chore(deps): update nextjs monorepo to v15.1.2 (#510)
  chore(deps): update dependency knip to v5.41.1 (#509)
  chore: update renovate.json
  chore: update package versions [skip ci]
  fix: skip broken test
  feat: add command to create minio storage (#507)
  fix: add options for forge / hardhat commands (#506)

Unverified

This user has not yet uploaded their public signing key.
Copy link

github-actions bot commented Dec 20, 2024

📦 Packages

Package NPM Docker
SDK Cli @settlemint/sdk-cli@0.7.0-pr2e7319a
SDK The Graph @settlemint/sdk-thegraph@0.7.0-pr2e7319a
SDK Portal @settlemint/sdk-portal@0.7.0-pr2e7319a
SDK Hasura @settlemint/sdk-hasura@0.7.0-pr2e7319a
SDK JS @settlemint/sdk-js@0.7.0-pr2e7319a
SDK Utils @settlemint/sdk-utils@0.7.0-pr2e7319a
SDK Next @settlemint/sdk-next@0.7.0-pr2e7319a
SDK Minio @settlemint/sdk-minio@0.7.0-pr2e7319a
SDK IPFS @settlemint/sdk-ipfs@0.7.0-pr2e7319a
SDK Blockscout @settlemint/sdk-blockscout@0.7.0-pr2e7319a
Registry ghcr.io/settlemint/btp-sdk-registry:0.7.0-pr2e7319a

@snigdha920 snigdha920 added the e2e label Dec 20, 2024

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.
@snigdha920 snigdha920 added e2e and removed e2e labels Dec 20, 2024

Unverified

This user has not yet uploaded their public signing key.
@snigdha920 snigdha920 added e2e and removed e2e labels Dec 20, 2024

Unverified

This user has not yet uploaded their public signing key.
@snigdha920 snigdha920 added the e2e label Dec 20, 2024

Unverified

This user has not yet uploaded their public signing key.
… test
@snigdha920 snigdha920 added e2e and removed e2e labels Dec 20, 2024

Unverified

This user has not yet uploaded their public signing key.
@snigdha920 snigdha920 added e2e and removed e2e labels Dec 20, 2024

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.
@snigdha920 snigdha920 force-pushed the snigdha/eng-2037-command-to-create-node-from-existing-network branch from 6ab3ea0 to ebd524e Compare December 20, 2024 18:18

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.
@snigdha920 snigdha920 added the e2e label Dec 20, 2024
@snigdha920 snigdha920 requested a review from janb87 December 20, 2024 18:22
@snigdha920 snigdha920 changed the title feat: command to create node from existing network feat: command to create node from existing network, fix select node & pk e2e test Dec 20, 2024
@snigdha920 snigdha920 marked this pull request as ready for review December 20, 2024 18:24
Copy link
Contributor

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey @snigdha920 - I've reviewed your changes - here's some feedback:

Overall Comments:

  • Consider keeping the deployment status checks (--wait flags and status verification) for resource creation to ensure resources are fully deployed before proceeding. Removing these could lead to race conditions if subsequent operations assume resources are ready.
Here's what I looked at during the review
  • 🟢 General issues: all looks good
  • 🟢 Security: all looks good
  • 🟡 Review instructions: 2 issues found
  • 🟢 Testing: all looks good
  • 🟢 Complexity: all looks good
  • 🟢 Documentation: all looks good

Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

snigdha920 and others added 3 commits December 20, 2024 19:36

Unverified

This user has not yet uploaded their public signing key.

Unverified

This user has not yet uploaded their public signing key.

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
…-existing-network
@snigdha920 snigdha920 enabled auto-merge (squash) December 20, 2024 18:59
@snigdha920 snigdha920 merged commit 8ef8e78 into main Dec 20, 2024
3 checks passed
@snigdha920 snigdha920 deleted the snigdha/eng-2037-command-to-create-node-from-existing-network branch December 20, 2024 19:01
@github-actions github-actions bot added the feat label Dec 20, 2024
@@ -77,7 +77,7 @@ export function getCreateCommand({
const autoAccept = !!acceptDefaults || isInCi;
const env: Partial<DotEnv> = await loadEnv(false, !!prod);

const instance = await instancePrompt(env, autoAccept);
const instance = env.SETTLEMINT_INSTANCE ?? (await instancePrompt(env, autoAccept));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this is redundant, the instanceprompt will automatically return this env variable

@@ -177,7 +206,6 @@ async function createBlockchainNodeMinioAndIpfs() {
CLUSTER_REGION,
"--accept-defaults",
"--default",
"--wait",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

keep the wait, eg if we run codegen in a test and the resource is not deployed the test will fail

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants