Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8520767
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T06:37:24+00:00 2026-06-11T06:37:24+00:00

I am trying to test some code that uses the Blobstore API, but I

  • 0

I am trying to test some code that uses the Blobstore API, but I don’t really get how I am expected to get some files into the blobstore. The following is not working:

private BlobKey createBlob(String path) throws Exception {
    FileService fileService = FileServiceFactory.getFileService();
    AppEngineFile file = fileService.createNewBlobFile("foobar");
    FileWriteChannel writeChannel = fileService.openWriteChannel(file, true);
    OutputStream output = Channels.newOutputStream(writeChannel);

    // copy files, guava-style
    InputStream input = new FileInputStream(path);
    assertNotNull(input);
    ByteStreams.copy(input, output); 
    input.close();

    // just in case...
    output.flush();
    output.close();
    writeChannel.close();

    // U NO WORK!!!
    BlobKey blobKey = fileService.getBlobKey(file);
    assertNotNull(blobKey);
    return blobKey;
}

My config:

new LocalServiceTestHelper(
    new LocalBlobstoreServiceTestConfig()
        //.setNoStorage(true)
        .setBackingStoreLocation("war/WEB-INF/appengine-generated"),
    new LocalFileServiceTestConfig()
).setUp();

Any ideas?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T06:37:26+00:00Added an answer on June 11, 2026 at 6:37 am

    The following test run successfully

    public class TestBlobstore {
      private static final LocalServiceTestHelper helper = 
        new LocalServiceTestHelper(new LocalDatastoreServiceTestConfig(),
                                   new LocalBlobstoreServiceTestConfig()
                                  );
    
      public TestBlobstore() {
      }
    
      @Before
      public void setUp() {
        helper.setUp();
      }
    
      @Test
      public void testBlobstore() throws Exception {
        System.out.println(createBlob("test.txt"));
      }
    
      private BlobKey createBlob(String path) throws Exception {
        FileService fileService = FileServiceFactory.getFileService();
        AppEngineFile file = fileService.createNewBlobFile("foobar");
        FileWriteChannel writeChannel = fileService.openWriteChannel(file, true);
        OutputStream output = Channels.newOutputStream(writeChannel);
    
        // copy files, guava-style
        InputStream input = new FileInputStream(path);
        assertNotNull(input);
        ByteStreams.copy(input, output); 
        input.close();
    
        // just in case...
        output.flush();
        output.close();
        writeChannel.closeFinally();
    
        // U NO WORK!!!
        BlobKey blobKey = fileService.getBlobKey(file);
        assertNotNull(blobKey);
        return blobKey;
      }
    }
    

    Two modifications:

    • User LocalBlobstoreServiceTestConfig instead of LocalFileServiceTestConfig
    • writeChannel.closeFinally(); instead of writeChannel.close()

    Hope this help.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to test some python code that uses urllib2 and lxml. I've seen
I am currently trying to build some test code that uses Google C++ Test
I am trying to change some old code which uses onclick so that I
Im using the Prism/Composite Application Library and trying to unit test some code that
I'm trying to test some Java code with Jython, but I'm stuck with a
I'm just writing some code to test the D3DXVec3Project function, trying to get it
Hi I'm trying to write some assembly code that uses printf to print a
I have some test code (as a part of a webapp) that uses urllib2
This is the error I'm getting when trying to compile some code that uses
I am trying to unit test some code, and I need to to replace

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.