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

lang: Add associated (init) constraint #318

Merged
merged 7 commits into from
May 25, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 6 additions & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,6 @@ jobs:
- cargo build
- cargo fmt -- --check
- cargo test
- <<: *defaults
name: Build and test TypeScript
script:
- cd ts
- yarn
- yarn build
- <<: *examples
name: Runs the examples 1
script:
Expand All @@ -58,17 +52,20 @@ jobs:
- pushd examples/multisig && anchor test && popd
- pushd examples/interface && anchor test && popd
- pushd examples/lockup && anchor test && popd
- <<: *examples
name: Runs the examples 2
script:
- pushd examples/misc && anchor test && popd
- pushd examples/events && anchor test && popd
- pushd examples/cashiers-check && anchor test && popd
- pushd examples/typescript && yarn && anchor test && popd
- pushd examples/zero-copy && yarn && anchor test && popd
- <<: *examples
name: Runs the examples 2
script:
- pushd examples/chat && yarn && anchor test && popd
- pushd examples/ido-pool && yarn && anchor test && popd
- pushd examples/swap/deps/serum-dex/dex && cargo build-bpf && cd ../../../ && anchor test && popd
- <<: *examples
name: Runs the examples 3
script:
- pushd examples/pyth && yarn && anchor test && popd
- pushd examples/tutorial/basic-0 && anchor test && popd
- pushd examples/tutorial/basic-1 && anchor test && popd
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,10 @@ incremented for features.

* ts: Address metadata is now optional for `anchor.workspace` clients ([#310](https://github.com/project-serum/anchor/pull/310)).

## Breaking Changes

* lang: `#[account(associated)]` now requires `init` to be provided to create an associated account. If not provided, then the address will be assumed to exist, and a constraint will be added to ensure its correctness ([#318](https://github.com/project-serum/anchor/pull/318)).

## [0.6.0] - 2021-05-23

## Features
Expand Down
5 changes: 3 additions & 2 deletions docs/src/tutorials/tutorial-6.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,9 @@ Lastly, notice the two accounts at the bottom of account context.
system_program: AccountInfo<'info>,
```

Although a bit of an implementaion detail, these accounts are required so that Anchor
can create your associated account. By convention, the names must be as given here.
In the same way that `rent` is required when using `init` in the previous tutorials,
`rent` and additionally the `system-program` must be provided when creating an associated
account. By convention, the names must be as given here.

For more details on how to use `#[account(associated)]`, see [docs.rs](https://docs.rs/anchor-lang/latest/anchor_lang/derive.Accounts.html).

Expand Down
4 changes: 2 additions & 2 deletions examples/chat/programs/chat/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ pub mod chat {

#[derive(Accounts)]
pub struct CreateUser<'info> {
#[account(associated = authority, space = "312")]
#[account(init, associated = authority, space = "312")]
user: ProgramAccount<'info, User>,
#[account(signer)]
authority: AccountInfo<'info>,
Expand All @@ -53,7 +53,7 @@ pub struct CreateChatRoom<'info> {

#[derive(Accounts)]
pub struct SendMessage<'info> {
#[account(has_one = authority)]
#[account(associated = authority, has_one = authority)]
user: ProgramAccount<'info, User>,
#[account(signer)]
authority: AccountInfo<'info>,
Expand Down
24 changes: 21 additions & 3 deletions examples/misc/programs/misc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,15 @@ pub mod misc {
misc2::cpi::state::set_data(ctx, data)
}

pub fn test_associated_account_creation(
pub fn test_init_associated_account(
ctx: Context<TestInitAssociatedAccount>,
data: u64,
) -> ProgramResult {
ctx.accounts.my_account.data = data;
Ok(())
}

pub fn test_associated_account(
ctx: Context<TestAssociatedAccount>,
data: u64,
) -> ProgramResult {
Expand Down Expand Up @@ -119,8 +127,8 @@ pub struct TestStateCpi<'info> {
// accounts are needed when creating the associated program address within
// the program.
#[derive(Accounts)]
pub struct TestAssociatedAccount<'info> {
#[account(associated = authority, with = state, with = data)]
pub struct TestInitAssociatedAccount<'info> {
#[account(init, associated = authority, with = state, with = data)]
my_account: ProgramAccount<'info, TestData>,
#[account(mut, signer)]
authority: AccountInfo<'info>,
Expand All @@ -130,6 +138,16 @@ pub struct TestAssociatedAccount<'info> {
system_program: AccountInfo<'info>,
}

#[derive(Accounts)]
pub struct TestAssociatedAccount<'info> {
#[account(associated = authority, with = state, with = data)]
my_account: ProgramAccount<'info, TestData>,
#[account(mut, signer)]
authority: AccountInfo<'info>,
state: ProgramState<'info, MyState>,
data: ProgramAccount<'info, Data>,
}

#[derive(Accounts)]
pub struct TestU16<'info> {
#[account(init)]
Expand Down
35 changes: 33 additions & 2 deletions examples/misc/tests/misc.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ describe("misc", () => {
assert.ok(stateAccount.auth.equals(program.provider.wallet.publicKey));
});

it("Can create an associated program account", async () => {
it("Can init an associated program account", async () => {
const state = await program.state.address();

// Manual associated address calculation for test only. Clients should use
Expand Down Expand Up @@ -155,7 +155,7 @@ describe("misc", () => {
return true;
}
);
await program.rpc.testAssociatedAccountCreation(new anchor.BN(1234), {
await program.rpc.testInitAssociatedAccount(new anchor.BN(1234), {
accounts: {
myAccount: associatedAccount,
authority: program.provider.wallet.publicKey,
Expand All @@ -174,6 +174,37 @@ describe("misc", () => {
assert.ok(account.data.toNumber() === 1234);
});

it("Can use an associated program account", async () => {
const state = await program.state.address();
const [
associatedAccount,
nonce,
] = await anchor.web3.PublicKey.findProgramAddress(
[
Buffer.from([97, 110, 99, 104, 111, 114]), // b"anchor".
program.provider.wallet.publicKey.toBuffer(),
state.toBuffer(),
data.publicKey.toBuffer(),
],
program.programId
);
await program.rpc.testAssociatedAccount(new anchor.BN(5), {
accounts: {
myAccount: associatedAccount,
authority: program.provider.wallet.publicKey,
state,
data: data.publicKey,
},
});
// Try out the generated associated method.
const account = await program.account.testData.associated(
program.provider.wallet.publicKey,
state,
data.publicKey
);
assert.ok(account.data.toNumber() === 5);
});

it("Can retrieve events when simulating a transaction", async () => {
const resp = await program.simulate.testSimulate(44);
const expectedRaw = [
Expand Down
2 changes: 1 addition & 1 deletion examples/tutorial/basic-5/programs/basic-5/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ pub struct CreateMint<'info> {

#[derive(Accounts)]
pub struct CreateToken<'info> {
#[account(associated = authority, with = mint)]
#[account(init, associated = authority, with = mint)]
token: ProgramAccount<'info, Token>,
#[account(mut, signer)]
authority: AccountInfo<'info>,
Expand Down
5 changes: 3 additions & 2 deletions examples/zero-copy/programs/zero-copy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ pub struct UpdateFooSecond<'info> {

#[derive(Accounts)]
pub struct CreateBar<'info> {
#[account(associated = authority, with = foo)]
#[account(init, associated = authority, with = foo)]
bar: Loader<'info, Bar>,
#[account(signer)]
authority: AccountInfo<'info>,
Expand All @@ -143,10 +143,11 @@ pub struct CreateBar<'info> {

#[derive(Accounts)]
pub struct UpdateBar<'info> {
#[account(mut, has_one = authority)]
#[account(mut, associated = authority, with = foo, has_one = authority)]
bar: Loader<'info, Bar>,
#[account(signer)]
authority: AccountInfo<'info>,
foo: Loader<'info, Foo>,
}

#[derive(Accounts)]
Expand Down
33 changes: 18 additions & 15 deletions examples/zero-copy/tests/zero-copy.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
const anchor = require("@project-serum/anchor");
const PublicKey = anchor.web3.PublicKey;
const BN = anchor.BN;
const assert = require("assert");

describe("zero-copy", () => {
Expand All @@ -19,15 +21,15 @@ describe("zero-copy", () => {
assert.ok(state.authority.equals(program.provider.wallet.publicKey));
assert.ok(state.events.length === 250);
state.events.forEach((event, idx) => {
assert.ok(event.from.equals(new anchor.web3.PublicKey()));
assert.ok(event.from.equals(new PublicKey()));
assert.ok(event.data.toNumber() === 0);
});
});

it("Updates zero copy state", async () => {
let event = {
from: new anchor.web3.PublicKey(),
data: new anchor.BN(1234),
from: new PublicKey(),
data: new BN(1234),
};
await program.state.rpc.setEvent(5, event, {
accounts: {
Expand All @@ -42,7 +44,7 @@ describe("zero-copy", () => {
assert.ok(event.from.equals(event.from));
assert.ok(event.data.eq(event.data));
} else {
assert.ok(event.from.equals(new anchor.web3.PublicKey()));
assert.ok(event.from.equals(new PublicKey()));
assert.ok(event.data.toNumber() === 0);
}
});
Expand Down Expand Up @@ -72,7 +74,7 @@ describe("zero-copy", () => {
});

it("Updates a zero copy account field", async () => {
await program.rpc.updateFoo(new anchor.BN(1234), {
await program.rpc.updateFoo(new BN(1234), {
accounts: {
foo: foo.publicKey,
authority: program.provider.wallet.publicKey,
Expand All @@ -94,7 +96,7 @@ describe("zero-copy", () => {
});

it("Updates a a second zero copy account field", async () => {
await program.rpc.updateFooSecond(new anchor.BN(55), {
await program.rpc.updateFooSecond(new BN(55), {
accounts: {
foo: foo.publicKey,
secondAuthority: program.provider.wallet.publicKey,
Expand Down Expand Up @@ -138,13 +140,14 @@ describe("zero-copy", () => {
});

it("Updates an associated zero copy account", async () => {
await program.rpc.updateBar(new anchor.BN(99), {
await program.rpc.updateBar(new BN(99), {
accounts: {
bar: await program.account.bar.associatedAddress(
program.provider.wallet.publicKey,
foo.publicKey
),
authority: program.provider.wallet.publicKey,
foo: foo.publicKey,
},
});
const bar = await program.account.bar.associated(
Expand Down Expand Up @@ -172,14 +175,14 @@ describe("zero-copy", () => {
const account = await program.account.eventQ(eventQ.publicKey);
assert.ok(account.events.length === 25000);
account.events.forEach((event) => {
assert.ok(event.from.equals(new anchor.web3.PublicKey()));
assert.ok(event.from.equals(new PublicKey()));
assert.ok(event.data.toNumber() === 0);
});
});

it("Updates a large event queue", async () => {
// Set index 0.
await program.rpc.updateLargeAccount(0, new anchor.BN(48), {
await program.rpc.updateLargeAccount(0, new BN(48), {
accounts: {
eventQ: eventQ.publicKey,
from: program.provider.wallet.publicKey,
Expand All @@ -193,13 +196,13 @@ describe("zero-copy", () => {
assert.ok(event.from.equals(program.provider.wallet.publicKey));
assert.ok(event.data.toNumber() === 48);
} else {
assert.ok(event.from.equals(new anchor.web3.PublicKey()));
assert.ok(event.from.equals(new PublicKey()));
assert.ok(event.data.toNumber() === 0);
}
});

// Set index 11111.
await program.rpc.updateLargeAccount(11111, new anchor.BN(1234), {
await program.rpc.updateLargeAccount(11111, new BN(1234), {
accounts: {
eventQ: eventQ.publicKey,
from: program.provider.wallet.publicKey,
Expand All @@ -216,13 +219,13 @@ describe("zero-copy", () => {
assert.ok(event.from.equals(program.provider.wallet.publicKey));
assert.ok(event.data.toNumber() === 1234);
} else {
assert.ok(event.from.equals(new anchor.web3.PublicKey()));
assert.ok(event.from.equals(new PublicKey()));
assert.ok(event.data.toNumber() === 0);
}
});

// Set last index.
await program.rpc.updateLargeAccount(24999, new anchor.BN(99), {
await program.rpc.updateLargeAccount(24999, new BN(99), {
accounts: {
eventQ: eventQ.publicKey,
from: program.provider.wallet.publicKey,
Expand All @@ -242,7 +245,7 @@ describe("zero-copy", () => {
assert.ok(event.from.equals(program.provider.wallet.publicKey));
assert.ok(event.data.toNumber() === 99);
} else {
assert.ok(event.from.equals(new anchor.web3.PublicKey()));
assert.ok(event.from.equals(new PublicKey()));
assert.ok(event.data.toNumber() === 0);
}
});
Expand All @@ -252,7 +255,7 @@ describe("zero-copy", () => {
// Fail to set non existing index.
await assert.rejects(
async () => {
await program.rpc.updateLargeAccount(25000, new anchor.BN(1), {
await program.rpc.updateLargeAccount(25000, new BN(1), {
accounts: {
eventQ: eventQ.publicKey,
from: program.provider.wallet.publicKey,
Expand Down
2 changes: 1 addition & 1 deletion lang/derive/accounts/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ use syn::parse_macro_input;
/// | `#[account(executable)]` | On `AccountInfo` structs | Checks the given account is an executable program. |
/// | `#[account(state = <target>)]` | On `CpiState` structs | Checks the given state is the canonical state account for the target program. |
/// | `#[account(owner = <target>)]` | On `CpiState`, `CpiAccount`, and `AccountInfo` | Checks the account owner matches the target. |
/// | `#[account(associated = <target>, with? = <target>, payer? = <target>, space? = "<literal>")]` | On `ProgramAccount` | Creates an associated program account at a program derived address. `associated` is the SOL address to create the account for. `with` is an optional association, for example, a `Mint` account in the SPL token program. `payer` is an optional account to pay for the account creation, defaulting to the `associated` target if none is given. `space` is an optional literal specifying how large the account is, defaulting to the account's serialized `Default::default` size (+ 8 for the account discriminator) if none is given. When creating an associated account, a `rent` `Sysvar` and `system_program` `AccountInfo` must be present in the `Accounts` struct. |
/// | `#[account(associated = <target>, with? = <target>, payer? = <target>, space? = "<literal>")]` | On `ProgramAccount` | Whe `init` is provided, creates an associated program account at a program derived address. `associated` is the SOL address to create the account for. `with` is an optional association, for example, a `Mint` account in the SPL token program. `payer` is an optional account to pay for the account creation, defaulting to the `associated` target if none is given. `space` is an optional literal specifying how large the account is, defaulting to the account's serialized `Default::default` size (+ 8 for the account discriminator) if none is given. When creating an associated account, a `rent` `Sysvar` and `system_program` `AccountInfo` must be present in the `Accounts` struct. When `init` is not provided, then ensures the given associated account has the expected address, defined by the program and the given seeds. |
// TODO: How do we make the markdown render correctly without putting everything
// on absurdly long lines?
#[proc_macro_derive(Accounts, attributes(account))]
Expand Down
Loading